mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 20:03:21 +00:00
Lint Code [skip actions]
This commit is contained in:
parent
8c0045a8d7
commit
98b834cdcd
@ -70,9 +70,7 @@ export function getCommands(): CommandDump {
|
||||
* Fetches and lists all the commands in the file.
|
||||
*/
|
||||
export function listCommands(): Command[] {
|
||||
return Object.values(getCommands())
|
||||
.sort((a, b) =>
|
||||
a.name[0].localeCompare(b.name[0]));
|
||||
return Object.values(getCommands()).sort((a, b) => a.name[0].localeCompare(b.name[0]));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -112,9 +110,7 @@ export function getAvatars(): AvatarDump {
|
||||
* Fetches and lists all the avatars in the file.
|
||||
*/
|
||||
export function listAvatars(): Avatar[] {
|
||||
return Object.values(getAvatars())
|
||||
.sort((a, b) =>
|
||||
a.name.localeCompare(b.name));
|
||||
return Object.values(getAvatars()).sort((a, b) => a.name.localeCompare(b.name));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -41,10 +41,7 @@ class HomePage extends React.Component<any, any> {
|
||||
<p>trademarks and copyrights of HoYoverse.</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
className={"HomePage_Discord"}
|
||||
onClick={() => openUrl("https://discord.gg/grasscutter")}
|
||||
>
|
||||
<div className={"HomePage_Discord"} onClick={() => openUrl("https://discord.gg/grasscutter")}>
|
||||
<DiscordLogo />
|
||||
<p>Join the Community!</p>
|
||||
</div>
|
||||
|
@ -45,7 +45,7 @@ class ScenesPage extends React.PureComponent {
|
||||
if (connected) {
|
||||
await teleportTo(scene);
|
||||
} else {
|
||||
await copyToClipboard(action.teleport(scene))
|
||||
await copyToClipboard(action.teleport(scene));
|
||||
}
|
||||
}
|
||||
|
||||
@ -61,9 +61,7 @@ class ScenesPage extends React.PureComponent {
|
||||
title={scene.identifier}
|
||||
alternate={`ID: ${scene.id} | ${sceneTypeToString(scene.type)}`}
|
||||
button={
|
||||
<button className={"ScenesPage_Button"}
|
||||
onClick={() => this.teleport(scene.id)}
|
||||
>
|
||||
<button className={"ScenesPage_Button"} onClick={() => this.teleport(scene.id)}>
|
||||
Teleport
|
||||
</button>
|
||||
}
|
||||
|
@ -49,11 +49,7 @@ class Character extends React.PureComponent<IProps> {
|
||||
/>
|
||||
|
||||
<div className={"Character_Label"}>
|
||||
<p
|
||||
style={{ fontSize: characterName.length >= 12 ? 13 : 17 }}
|
||||
>
|
||||
{characterName}
|
||||
</p>
|
||||
<p style={{ fontSize: characterName.length >= 12 ? 13 : 17 }}>{characterName}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user