diff options
author | 2023-08-09 23:45:21 +0200 | |
---|---|---|
committer | 2023-08-09 23:45:21 +0200 | |
commit | 7b6232a15128d3dfb6680e9cc97382eb3c198411 (patch) | |
tree | b03cdad8588c4e25fb96287985f89f92537d0bab /src/components/InputCopyable.vue | |
parent | 56d74d07a8050294f07d15044ca3e0644cc9b79d (diff) | |
download | it-tools-7b6232a15128d3dfb6680e9cc97382eb3c198411.tar.gz it-tools-7b6232a15128d3dfb6680e9cc97382eb3c198411.tar.zst it-tools-7b6232a15128d3dfb6680e9cc97382eb3c198411.zip |
feat(Case Converter): Add lowercase and uppercase (#534)
* feat(case converter): add uppercase and lowercase
* (case converter) correctly use stripRegexp
* style: lint fix
* feat(ui): added c-select in the ui lib (#550)
* feat(ui): added c-select in the ui lib
* refactor(ui): switched n-select to c-select
* feat(new tool): emoji picker (#551)
* chore(deps): update dependency @vitejs/plugin-vue to v4 (#496)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* chore(deps): update dependency @vitejs/plugin-vue-jsx to v3 (#497)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* refactor(case converter): using nocase to convert to upper and lower case
* refactor(case converter): config based case changes
---------
Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Diffstat (limited to 'src/components/InputCopyable.vue')
-rw-r--r-- | src/components/InputCopyable.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/InputCopyable.vue b/src/components/InputCopyable.vue index 0c68909..db26f45 100644 --- a/src/components/InputCopyable.vue +++ b/src/components/InputCopyable.vue @@ -11,7 +11,7 @@ const { copy } = useClipboard({ source: value }); function onCopyClicked() { copy(); - tooltipText.value = 'Copied !'; + tooltipText.value = 'Copied!'; setTimeout(() => { tooltipText.value = 'Copy to clipboard'; |