Skip to content

Commit 51179c9

Browse files
authored
Merge pull request #19 from tomoam/update-up-to-20220219
2022/02/19 迄の更新に追従
2 parents 38c5391 + 27b2fe4 commit 51179c9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

content/tutorial/01-svelte/06-bindings/03-checkbox-inputs/app-b/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
</p>
2020
{/if}
2121

22-
<button disabled={!yes}> Subscribe </button>
22+
<button disabled={!yes}>Subscribe</button>

src/routes/tutorial/[slug]/Editor.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
import('$lib/client/monaco/monaco.js').then(({ monaco }) => {
4949
if (destroyed) return;
5050
instance = init(monaco, dark_mode);
51+
52+
document.fonts.ready.then(() => {
53+
monaco.editor.remeasureFonts();
54+
});
5155
});
5256
5357
/** @param {MediaQueryListEvent} event */

src/routes/tutorial/[slug]/Menu.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
<strong>{current.title}</strong>
179179
</h1>
180180

181-
<a href={current.next ? `/tutorial/${current.next.slug}` : undefined} aria-label="Previous">
181+
<a href={current.next ? `/tutorial/${current.next.slug}` : undefined} aria-label="Next">
182182
<Icon name="arrow-right" size={16} />
183183
</a>
184184
</header>

0 commit comments

Comments
 (0)