summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2023-04-07 20:34:23 +0900
committerGitHub <noreply@github.com>2023-04-07 20:34:23 +0900
commitabda3b6c8c6e2688e5fa102dd70422c140bc2966 (patch)
tree2268787e2844671d98504921b5e69a34e80514ed /packages/frontend/src
parentfix(test): disable remote user tests (diff)
downloadmisskey-abda3b6c8c6e2688e5fa102dd70422c140bc2966.tar.gz
misskey-abda3b6c8c6e2688e5fa102dd70422c140bc2966.tar.bz2
misskey-abda3b6c8c6e2688e5fa102dd70422c140bc2966.zip
ci(#10336): use TurboSnap (#10494)
* ci(#10336): use TurboSnap * build: fix version * ci(#10336): update build dir * chore(#10336): fire changes * chore: stabilize icon width on `PageHeader` * chore: fire changes * ci: invalid ignore * ci: trace logs * chore: debug * revert: debug This reverts commit 2329165e252640504ef17e97389e0460ada83e70. * chore: do not reuse build dir * build: scripts * ci: tweak * revert: re-revert debug This reverts commit 596ef05d9eabe11c0ec3125fa4a87071d59b9b2f. * chore: detect changes manually * fix: syntax * ci: do not use only-changed * ci: fix command * revert: re-re-revert debug This reverts commit b027170d7504277006ce9abac386df8c38d55fd2. * ci: use build dir * revert: re-re-re-revert debug This reverts commit 529ab126ed63ec10eeeaaee3e9ef581b75e739c9. * ci: fix path * revert: re-re-re-re-revert debug This reverts commit 0b0c0b9ea48d37d617b777e9f602ccf8a2400381. * ci: fix typo * ci: only show story files * revert: re-re-re-re-re-revert debug This reverts commit 9f5b88df3225f23efd72bb099cfebe359af7acdb. * ci: skip when no stories found * ci: use skip * revert: re-re-re-re-re-re-revert debug This reverts commit 0df4bdc30bbf425c8682594d500a6d986517e721. * ci: fix micromatch version * revert: re-re-re-re-re-re-re-revert debug This reverts commit 63063b02bbcb37e85b93afe3f919b185425ddcf0. * revert: re-re-re-re-re-re-re-re-revert debug This reverts commit 01d9669e2a2c758c478bad5379fe19768e2096bc. * chore: pin tabler icon width globally * ci: notify when Chromatic skips * ci: fix endpoint --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/components/global/MkA.stories.impl.ts2
-rw-r--r--packages/frontend/src/components/global/MkPageHeader.stories.impl.ts9
-rw-r--r--packages/frontend/src/style.scss1
3 files changed, 7 insertions, 5 deletions
diff --git a/packages/frontend/src/components/global/MkA.stories.impl.ts b/packages/frontend/src/components/global/MkA.stories.impl.ts
index 72d069e853..639ed19af2 100644
--- a/packages/frontend/src/components/global/MkA.stories.impl.ts
+++ b/packages/frontend/src/components/global/MkA.stories.impl.ts
@@ -22,7 +22,7 @@ export const Default = {
};
},
},
- template: '<MkA v-bind="props">Text</MkA>',
+ template: '<MkA v-bind="props">Misskey</MkA>',
};
},
async play({ canvasElement }) {
diff --git a/packages/frontend/src/components/global/MkPageHeader.stories.impl.ts b/packages/frontend/src/components/global/MkPageHeader.stories.impl.ts
index 5519d60fc4..7485f3b82f 100644
--- a/packages/frontend/src/components/global/MkPageHeader.stories.impl.ts
+++ b/packages/frontend/src/components/global/MkPageHeader.stories.impl.ts
@@ -1,4 +1,5 @@
/* eslint-disable @typescript-eslint/explicit-function-return-type */
+import { waitFor } from '@storybook/testing-library';
import { StoryObj } from '@storybook/vue3';
import MkPageHeader from './MkPageHeader.vue';
export const Empty = {
@@ -22,16 +23,16 @@ export const Empty = {
template: '<MkPageHeader v-bind="props" />',
};
},
+ async play() {
+ const wait = new Promise((resolve) => setTimeout(resolve, 800));
+ await waitFor(async () => await wait);
+ },
args: {
static: true,
tabs: [],
},
parameters: {
layout: 'centered',
- chromatic: {
- /* This component has animations that are implemented with JavaScript. So it's unstable to take a snapshot. */
- disableSnapshot: true,
- },
},
} satisfies StoryObj<typeof MkPageHeader>;
export const OneTab = {
diff --git a/packages/frontend/src/style.scss b/packages/frontend/src/style.scss
index 3634e02745..20254d335e 100644
--- a/packages/frontend/src/style.scss
+++ b/packages/frontend/src/style.scss
@@ -127,6 +127,7 @@ hr {
}
.ti {
+ width: 1.28em;
vertical-align: -12%;
line-height: 1em;