Skip to content

Commit

Permalink
Revert "ライセンス周りの処理を。"
Browse files Browse the repository at this point in the history
This reverts commit 79ccdc8.
  • Loading branch information
Ruruke committed Dec 30, 2024
1 parent ce21163 commit a002300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/global/MkCustomEmoji.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const alt = computed(() => `:${customEmojiName.value}:`);
const errored = ref(url.value == null);

function onClick(ev: MouseEvent) {
if (props.menu && canReact.value ) {
if (props.menu && canReact.value ) {

Check failure on line 99 in packages/frontend/src/components/global/MkCustomEmoji.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

Multiple spaces found before '&&'
os.popupMenu([{
type: 'label',
text: `:${props.name}:`,
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/scripts/import-emoji.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export async function importEmojiMeta(emoji, host:string) {
console.log(err);
//リモートから取得に失敗
}
emoji.license = (emoji.license ? emoji.license + '\n' : ""); //+ 'import from ' + host;
emoji.license = (emoji.license ? emoji.license + '\n' : '') + 'import from ' + host;
return emoji;
}

0 comments on commit a002300

Please sign in to comment.