You've already forked AstralRinth
forked from didirus/AstralRinth
@@ -38,9 +38,13 @@
|
|||||||
<div class="withdraw-options-scroll">
|
<div class="withdraw-options-scroll">
|
||||||
<div class="withdraw-options">
|
<div class="withdraw-options">
|
||||||
<button
|
<button
|
||||||
v-for="method in payoutMethods.filter((x) =>
|
v-for="method in payoutMethods
|
||||||
x.name.toLowerCase().includes(search.toLowerCase()),
|
.filter((x) => x.name.toLowerCase().includes(search.toLowerCase()))
|
||||||
)"
|
.sort((a, b) =>
|
||||||
|
a.type !== 'tremendous'
|
||||||
|
? -1
|
||||||
|
: a.name.toLowerCase().localeCompare(b.name.toLowerCase()),
|
||||||
|
)"
|
||||||
:key="method.id"
|
:key="method.id"
|
||||||
class="withdraw-option button-base"
|
class="withdraw-option button-base"
|
||||||
:class="{ selected: selectedMethodId === method.id }"
|
:class="{ selected: selectedMethodId === method.id }"
|
||||||
|
|||||||
Reference in New Issue
Block a user