Skip to content

Commit

Permalink
Merge pull request #4 from Lenni009/dev
Browse files Browse the repository at this point in the history
remove duplicate maxlength
  • Loading branch information
Lenni009 authored Dec 27, 2023
2 parents daf54bf + 7867d66 commit 5192281
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 111 deletions.
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

101 changes: 0 additions & 101 deletions .eslintrc.js

This file was deleted.

2 changes: 0 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,12 @@ function checkAdjacency() {
:index="0"
:label="t('translation.enterfirstregion')"
class="glyph-input"
maxlength="12"
/>

<GlyphInput
:index="1"
:label="t('translation.entersecondregion')"
class="glyph-input"
maxlength="12"
/>
</div>
<button
Expand Down
1 change: 0 additions & 1 deletion src/components/ThemeSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ function switchTheme(theme: string | undefined = undefined) {
<button
class="themeswitcher"
id="themeSwitch"
role="button"
@click="switchTheme()"
>
{{ t('translation.switchtheme') }}
Expand Down
4 changes: 2 additions & 2 deletions src/i18n/en-EN/translation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export default {
touchingontheedge: 'Touching on one edge',
touchingonthecorner: 'Touching on one corner',
nottouching: 'Not touching',
enterfirstregion: 'Enter First Region Glyphs/Coordinates',
entersecondregion: 'Enter Second Region Glyphs/Coordinates',
enterfirstregion: 'First Region Glyphs/Coordinates',
entersecondregion: 'Second Region Glyphs/Coordinates',
delete: 'Delete',
check: 'Check Adjacency',
};

0 comments on commit 5192281

Please sign in to comment.