merge-requests/154/head
Bat 2018-04-18 17:44:20 +01:00
rodzic 74bd0bae8c
commit 2c41cd6510
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,8 +1,8 @@
<template>
<button @click="toggleRadio" :class="['ui', 'blue', {'inverted': running}, 'button']">
<i class="ui feed icon"></i>
<template v-if="running">Stop</template>
<template v-else>Start</template>
<template v-if="running">{{ $t('Stop') }}</template>
<template v-else>{{ $t('Start') }}</template>
radio
</button>
</template>

Wyświetl plik

@ -15,7 +15,7 @@
class="ui basic yellow button"
v-if="$store.state.auth.authenticated && type === 'custom' && customRadio.user === $store.state.auth.profile.id"
:to="{name: 'library.radios.edit', params: {id: customRadioId }}">
Edit...
{{ $t('Edit...') }}
</router-link>
<radio-button class="right floated button" :type="type" :custom-radio-id="customRadioId"></radio-button>
</div>