fix some linting in frontends

This commit is contained in:
dakkar 2024-10-11 11:24:49 +01:00
parent 2ecaa57cd5
commit 3cec5f927e
5 changed files with 7 additions and 7 deletions

View file

@ -20,9 +20,9 @@ testCommit:
- pnpm install --frozen-lockfile
- pnpm run build
- pnpm run migrate
- pnpm run --filter='!megalodon' --workspace-concurrency=1 test
- pnpm run --filter=backend lint
- pnpm run --filter=frontend eslint
- pnpm run --filter='!megalodon' test
- pnpm run --filter=backend --filter=misskey-js lint
- pnpm run --filter=frontend --filter=frontend-embed eslint
cache:
key: test
policy: pull-push

View file

@ -360,7 +360,7 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
case 'center': {
return [h('div', {
style: 'text-align:center;',
}, h('bdi',genEl(token.children, scale)))];
}, h('bdi', genEl(token.children, scale)))];
}
case 'url': {

View file

@ -168,7 +168,7 @@ const exportData = () => {
};
watch([
enableCondensedLineForAcct,
enableCondensedLine,
], async () => {
await reloadAsk();
});

View file

@ -124,7 +124,7 @@ export function openInstanceMenu(ev: MouseEvent) {
});
}
if(instance.donationUrl) {
if (instance.donationUrl) {
menuItems.push({
type: 'a',
text: i18n.ts.donation,