-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f140e8b
commit 6db4dc3
Showing
5 changed files
with
197 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { h } from 'tsx-dom'; | ||
|
||
/** | ||
* Displayed when a user has previously worked on a case page and is now visiting | ||
* the page again (with no active session). Displayed inside an OOUI message box. | ||
* | ||
* @return HTML element | ||
*/ | ||
export default function () { | ||
|
||
return <span> | ||
<b>{ | ||
mw.message( 'deputy.session.otherActive.head' ).text() | ||
}</b><br/>{ | ||
mw.message( 'deputy.session.otherActive.help' ).text() | ||
}<br/><span class="dp-cs-session-stop" /> | ||
{/* The above <span> will be replaced in DeputySession. */} | ||
</span>; | ||
} |