forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tgui-next: useBackend edition (tgstation#48010)
* Initial useBackend implementation * Lots of random ui shit * Bulldozer * Fix an infinite recursion * Quotes * Rebuild tgui
- Loading branch information
1 parent
c2e89e8
commit 085b30b
Showing
89 changed files
with
1,474 additions
and
1,473 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,6 +107,7 @@ const setupHttpLink = () => { | |
}); | ||
return; | ||
} | ||
res.write('Hello'); | ||
res.end(); | ||
}); | ||
|
||
|
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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
import { classes } from 'common/react'; | ||
import { Box } from './Box'; | ||
|
||
export const BlockQuote = props => { | ||
const { style, ...rest } = props; | ||
const { className, ...rest } = props; | ||
return ( | ||
<Box | ||
style={{ | ||
'color': 'rgba(255, 255, 255, 0.5)', | ||
'border-left': '2px solid rgba(255, 255, 255, 0.5)', | ||
'padding-left': '6px', | ||
...style, | ||
}} | ||
className={classes([ | ||
'BlockQuote', | ||
className, | ||
])} | ||
{...rest} /> | ||
); | ||
}; |
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
Oops, something went wrong.