diff options
| author | FineArchs <133759614+FineArchs@users.noreply.github.com> | 2024-01-18 12:16:12 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-18 12:16:12 +0900 |
| commit | fc7cd636a39a1bc703bce83b71dba78455a76316 (patch) | |
| tree | ecfb4fe65b98e9552b1c7f7f160ccef8be5ccf61 /packages/frontend/src/pages/flash | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-fc7cd636a39a1bc703bce83b71dba78455a76316.tar.gz sharkey-fc7cd636a39a1bc703bce83b71dba78455a76316.tar.bz2 sharkey-fc7cd636a39a1bc703bce83b71dba78455a76316.zip | |
refactor: MkCodeをブロックとインラインで別コンポーネント化する (#13026)
* Create MkCodeInline.vue
* Update MkCode.vue
* Update MkMisskeyFlavoredMarkdown.ts
* Update flash.vue
* Update MkCodeInline.vue
Diffstat (limited to 'packages/frontend/src/pages/flash')
| -rw-r--r-- | packages/frontend/src/pages/flash/flash.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/flash/flash.vue b/packages/frontend/src/pages/flash/flash.vue index 4318694d4f..fabbc1c05d 100644 --- a/packages/frontend/src/pages/flash/flash.vue +++ b/packages/frontend/src/pages/flash/flash.vue @@ -37,7 +37,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template #icon><i class="ti ti-code"></i></template> <template #label>{{ i18n.ts._play.viewSource }}</template> - <MkCode :code="flash.script" lang="is" :inline="false" class="_monospace"/> + <MkCode :code="flash.script" lang="is" class="_monospace"/> </MkFolder> <div :class="$style.footer"> <Mfm :text="`By @${flash.user.username}`"/> |