Skip to content

Commit d3c4ae5

Browse files
authored
Tiny fixes (#1437)
1 parent 82acf91 commit d3c4ae5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

frontend/src/lobby/JoinPanel.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const JoinPanel = ({roomInfo}) => {
3030
</tr>)}
3131
</tbody>
3232
</table>
33-
: "There are no rooms currently open."}
33+
: "There are no public rooms open currently."}
3434
</fieldset>
3535
);
3636
};

frontend/src/lobby/Version.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Version = ({version, MTGJSONVersion, boosterRulesVersion}) => {
2121

2222
<div>
2323
Card data: <a href="https://www.mtgjson.com">MTGJSON</a> {" "}
24-
<a href={`https://mtgjson.com/changelog/version-5/#_${MTGJSONVersion.version.replace(/\./g, "-")}`} className='code'>
24+
<a href={`https://mtgjson.com/changelog/mtgjson-v5/#_${MTGJSONVersion.version.replace(/\./g, "-")}`} className='code'>
2525
<code>v{MTGJSONVersion.version}</code>
2626
</a> <span className='date'>({MTGJSONVersion.date})</span>
2727
</div>

frontend/src/lobby/Version.scss

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
display: grid;
66
grid-auto-flow: column;
77
grid-gap: 20px;
8+
text-align: center;
89
align-content: end;
910

1011
a {

0 commit comments

Comments
 (0)