Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 7f23011

Browse files
committed
webui: Center some text, that otherwise looks a bit weird
1 parent 63a0196 commit 7f23011

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui/jsx/database-watchers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ export default function DatabaseWatchers({stars}) {
66

77
if (data === null) {
88
if (stars) {
9-
return <h3>No-one has starred {meta.owner + "/" + meta.database} yet</h3>;
9+
return <h3 style={{textAlign: "center"}}>No-one has starred '{meta.owner + "/" + meta.database}' yet</h3>;
1010
} else {
11-
return <h3>No-one is watching {meta.owner + "/" + meta.database} yet</h3>;
11+
return <h3 style={{textAlign: "center"}}>No-one is watching '{meta.owner + "/" + meta.database}' yet</h3>;
1212
}
1313
}
1414

0 commit comments

Comments
 (0)