Skip to content

Commit

Permalink
Merge branch 'release/1.1.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Nov 26, 2023
2 parents 080e193 + 13c7e58 commit 77d4a56
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pdanpdan/quasar-play",
"version": "1.1.11",
"version": "1.1.12",
"description": "Playground for Quasar Framework",
"productName": "Quasar Play",
"author": {
Expand Down
11 changes: 8 additions & 3 deletions src/components/ShareDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,14 @@
/>
</q-card-section>

<q-card-section class="q-py-xs q-px-sm">
<vue-qrious class="fit" :value="shareUrl" level="L" :size="551" :padding="10" />
<q-card-section v-if="shareUrl.length <= 2953" class="q-py-xs q-px-sm">
<vue-qrious
class="fit"
:value="shareUrl"
level="L"
:size="443"
:padding="10"
/>
</q-card-section>

<q-card-actions align="right">
Expand Down Expand Up @@ -135,7 +141,6 @@ const shareUrl = computed(() => {
url.searchParams.set('editor', settings.editor);
console.log(String(url).length);
return String(url);
});
Expand Down

0 comments on commit 77d4a56

Please sign in to comment.