mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-09 17:58:21 +00:00
Merge pull request #3421 from Bnyro/master
chore: run 'pnpm lint --fix'
This commit is contained in:
commit
69a5e69bc3
@ -25,7 +25,7 @@
|
||||
|
||||
<button
|
||||
v-if="subscribed != null"
|
||||
class="btn w-max mt-2"
|
||||
class="btn mt-2 w-max"
|
||||
@click="subscribeHandler"
|
||||
v-text="
|
||||
$t('actions.' + (subscribed ? 'unsubscribe' : 'subscribe')) + ' - ' + numberFormat(item.subscribers)
|
||||
|
@ -2,10 +2,10 @@
|
||||
<ModalComponent @close="$emit('close')">
|
||||
<div class="flex flex-col">
|
||||
<h2 v-t="'actions.create_playlist'" />
|
||||
<input type="text" class="input mt-2" v-model="playlistName" />
|
||||
<div class="flex mt-3 ml-auto w-min">
|
||||
<button class="btn" v-t="'actions.cancel'" @click="$emit('close')" />
|
||||
<button class="btn ml-2" v-t="'actions.okay'" @click="onCreatePlaylist" />
|
||||
<input v-model="playlistName" type="text" class="input mt-2" />
|
||||
<div class="ml-auto mt-3 w-min flex">
|
||||
<button v-t="'actions.cancel'" class="btn" @click="$emit('close')" />
|
||||
<button v-t="'actions.okay'" class="btn ml-2" @click="onCreatePlaylist" />
|
||||
</div>
|
||||
</div>
|
||||
</ModalComponent>
|
||||
|
Loading…
Reference in New Issue
Block a user