aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-03-24 18:35:37 +0100
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-03-24 18:35:37 +0100
commit8787ce72ababea4b412f8946399b256fdaacc427 (patch)
tree2dbc7787e78ede768b516aa03226cf8c7e8d4646
parentdab8d633902b41ad439da1b03872022d4b5e346a (diff)
downloadit-tools-8787ce72ababea4b412f8946399b256fdaacc427.tar.gz
it-tools-8787ce72ababea4b412f8946399b256fdaacc427.tar.zst
it-tools-8787ce72ababea4b412f8946399b256fdaacc427.zip
fix(roman-converter): replaced incorrect default value
-rw-r--r--src/tools/roman-numeral-converter/roman-numeral-converter.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/roman-numeral-converter/roman-numeral-converter.vue b/src/tools/roman-numeral-converter/roman-numeral-converter.vue
index a536f24..c55380d 100644
--- a/src/tools/roman-numeral-converter/roman-numeral-converter.vue
+++ b/src/tools/roman-numeral-converter/roman-numeral-converter.vue
@@ -30,7 +30,7 @@ import { arabicToRoman, romanToArabic } from './roman-numeral-converter.service'
const inputNumeral = ref(42);
const outputRoman = computed(() => arabicToRoman(inputNumeral.value));
-const inputRoman = ref('IVX');
+const inputRoman = ref('XLII');
const outputNumeral = computed(() => romanToArabic(inputRoman.value));
const { copy: copyRoman } = useCopy({ source: outputRoman, text: 'Roman number copied to the clipboard' });