summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-11-05 08:25:08 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-11-05 08:25:08 +0900
commit56401ed91c34a265fa5edcf5554cff3684ec3d98 (patch)
tree6ff28ed388bb4bd4d617801a846967e31443e357 /packages/frontend/src/components
parentNew Crowdin updates (#12241) (diff)
downloadsharkey-56401ed91c34a265fa5edcf5554cff3684ec3d98.tar.gz
sharkey-56401ed91c34a265fa5edcf5554cff3684ec3d98.tar.bz2
sharkey-56401ed91c34a265fa5edcf5554cff3684ec3d98.zip
:art:
Diffstat (limited to 'packages/frontend/src/components')
-rw-r--r--packages/frontend/src/components/global/MkCondensedLine.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/global/MkCondensedLine.vue b/packages/frontend/src/components/global/MkCondensedLine.vue
index ef1c931bc3..2ed615f5ff 100644
--- a/packages/frontend/src/components/global/MkCondensedLine.vue
+++ b/packages/frontend/src/components/global/MkCondensedLine.vue
@@ -18,10 +18,10 @@ interface Props {
const contentSymbol = Symbol();
const observer = new ResizeObserver((entries) => {
- const results: {
- container: HTMLSpanElement;
- transform: string;
- }[] = [];
+ const results: {
+ container: HTMLSpanElement;
+ transform: string;
+ }[] = [];
for (const entry of entries) {
const content = (entry.target[contentSymbol] ? entry.target : entry.target.firstElementChild) as HTMLSpanElement;
const props: Required<Props> = content[contentSymbol];