mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-25 08:35:43 +01:00
fix(ui/views): fix EA auth UI handling
This commit is contained in:
parent
faba49c025
commit
a8db5ff8c4
@ -65,7 +65,7 @@
|
|||||||
"paste": "Paste",
|
"paste": "Paste",
|
||||||
"token": "Token",
|
"token": "Token",
|
||||||
"verify": "Verify Token",
|
"verify": "Verify Token",
|
||||||
"page_header": "The <strong>Early Access</strong> release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features.\n\nTo be an Early Access member, you must be a Patreon Early Access Subscriber.",
|
"page_header": "The Early Access release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features.\n\nTo be an Early Access member, you must be a Patreon Early Access Subscriber.",
|
||||||
"page_opened": "Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account.\nWhen you are done, enter the token below.",
|
"page_opened": "Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account.\nWhen you are done, enter the token below.",
|
||||||
"login_failed": "Login failed!\n\nDouble check that your token is correct and try again"
|
"login_failed": "Login failed!\n\nDouble check that your token is correct and try again"
|
||||||
},
|
},
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<div class="tile is-ancestor">
|
<div class="tile is-ancestor">
|
||||||
<div class="tile is-parent" v-for="Lpackage in $root.$data.config.packages" :key="Lpackage.name" :index="Lpackage.name">
|
<div class="tile is-parent" v-for="Lpackage in $root.$data.config.packages" :key="Lpackage.name" :index="Lpackage.name">
|
||||||
<div class="tile is-child">
|
<div class="tile is-child">
|
||||||
<div class="box clickable-box" v-on:click.capture.stop="Lpackage.default = !Lpackage.default">
|
<div class="box clickable-box" v-on:click.capture.stop="clicked_box(Lpackage)">
|
||||||
<div class="ribbon" v-if="Lpackage.is_new"><span>New!</span></div>
|
<div class="ribbon" v-if="Lpackage.is_new"><span>New!</span></div>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<b-checkbox v-model="Lpackage.default">
|
<b-checkbox v-model="Lpackage.default">
|
||||||
|
Loading…
Reference in New Issue
Block a user