File tree 4 files changed +8
-2
lines changed
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export function SplitButton(props: Props) {
39
39
< Popover . Trigger
40
40
class = "group border rounded-md rounded-s-none hover:bg-fore-base/5 focus-visible:(outline-none ring-2 ring-fore-base ring-offset-2 ring-offset-back-base) p-2 disabled:(pointer-events-none opacity-50)"
41
41
disabled = { props . disabled }
42
+ aria-label = "More download options"
42
43
>
43
44
< ChevronDown
44
45
size = { 20 }
Original file line number Diff line number Diff line change @@ -461,7 +461,7 @@ export function Editor(props: Props) {
461
461
label = { key }
462
462
active = { renderKey ( ) === key }
463
463
>
464
- < img class = "rounded-sm" src = { thumbs [ key ] } />
464
+ < img class = "rounded-sm" src = { thumbs [ key ] } alt = "" />
465
465
</ Preview >
466
466
</ ContentMenuTrigger >
467
467
) }
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ export default createHandler(() => (
9
9
< meta charset = "utf-8" />
10
10
< meta name = "viewport" content = "width=device-width, initial-scale=1" />
11
11
< link rel = "icon" href = "/favicon.svg" />
12
+ < title > qrframe - a code based QR code designer</ title >
13
+ < meta
14
+ name = "description"
15
+ content = "Create beautiful QR codes using Javascript code with this customizable QR code generator."
16
+ />
12
17
{ assets }
13
18
</ head >
14
19
< body class = "bg-back-base text-fore-base [--un-default-border-color:fg-subtle]" >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function Temp() {
36
36
} ) ;
37
37
} ) ;
38
38
39
- let qrPreview : HTMLDivElement ;
39
+ let qrPreview ! : HTMLDivElement ;
40
40
let textRef : HTMLTextAreaElement ;
41
41
42
42
const [ textFocused , setTextFocused ] = createSignal ( false ) ;
You can’t perform that action at this time.
0 commit comments