Skip to content

Commit

Permalink
chore: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 23, 2024
1 parent bc016f3 commit 91adbfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/components/BarAudioPlayerWidget.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
<label col={1} color="white" fontSize={15} lineBreak="end" margin="3 3 0 10" maxLines={2} row={1} sharedTransitionTag="title" text={playingInfo?.name || ''} verticalAlignment="top"> </label>
<canvaslabel col={1} color="lightgray" fontSize={12} margin="0 10 4 10" verticalTextAlignment="bottom">
<cspan text={formatDuration(currentTime, 'mm:ss')} verticalAlignment="bottom" />
<cspan text={playingInfo && formatDuration(playingInfo.duration, 'mm:ss')} textalignment="right" verticalalignment="bottom" />
<cspan text={playingInfo && formatDuration(playingInfo.duration, 'mm:ss')} textAlignment="right" verticalAlignment="bottom" />
</canvaslabel>
<gridlayout col={1} columns="auto,auto,auto,auto,auto,auto" horizontalAlignment="right" verticalAlignment="center">
<mdbutton class="whiteSmallActionBarButton" text="mdi-home" variant="text" visibility={pack?.canHome(currentStage) ? 'visible' : 'collapsed'} on:tap={onHomeButton} />
Expand Down
7 changes: 1 addition & 6 deletions app/components/RemoteList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,7 @@
rowHeight={getItemRowHeight(viewStyle) * $fontScale}
android:paddingBottom={$windowInset.bottom}>
<Template let:item>
<canvasview
class="card"
borderWidth={viewStyle === 'card' || colorTheme === 'eink' ? 1 : 0}
fontSize={14 * $fontScale}
on:tap={() => onItemTap(item)}
on:draw={(e) => onCanvasDraw(item, e)}>
<canvasview class="card" borderWidth={viewStyle === 'card' || colorTheme === 'eink' ? 1 : 0} on:tap={() => onItemTap(item)} on:draw={(e) => onCanvasDraw(item, e)}>
<image
borderRadius={12}
decodeWidth={IMAGE_DECODE_WIDTH}
Expand Down

0 comments on commit 91adbfd

Please sign in to comment.