critical polls fix
All checks were successful
Lint / pnpm_install (push) Successful in 28s
Lint / lint (sw) (push) Successful in 43s
Lint / lint (misskey-js) (push) Successful in 49s
Test (production install and build) / production (22.x) (push) Successful in 1m23s
Lint / lint (backend) (push) Successful in 1m30s
Lint / typecheck (misskey-js) (push) Successful in 41s
Lint / typecheck (backend) (push) Successful in 1m44s
Lint / lint (frontend) (push) Successful in 9m11s
All checks were successful
Lint / pnpm_install (push) Successful in 28s
Lint / lint (sw) (push) Successful in 43s
Lint / lint (misskey-js) (push) Successful in 49s
Test (production install and build) / production (22.x) (push) Successful in 1m23s
Lint / lint (backend) (push) Successful in 1m30s
Lint / typecheck (misskey-js) (push) Successful in 41s
Lint / typecheck (backend) (push) Successful in 1m44s
Lint / lint (frontend) (push) Successful in 9m11s
This commit is contained in:
parent
f8304ffd61
commit
a1a1f1cada
1 changed files with 5 additions and 6 deletions
|
@ -11,13 +11,13 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
<Sortable
|
||||
v-model="choices"
|
||||
:animation="150"
|
||||
:handle="'.' + $style.itemHandle"
|
||||
:handle="itemHandle"
|
||||
class="sortable-list"
|
||||
>
|
||||
<template #item="{element, index}">
|
||||
<div :class="$style['list-item']">
|
||||
<div :class="$style['list-item']" style="background: var(--panel); border-radius: 6px; border: solid 1px var(--panel);">
|
||||
<button class="_button" :class="$style.itemHandle"><i class="ti ti-menu"></i></button>
|
||||
<div class="list-item">
|
||||
<div class="list-item" style="background: var(--panel); border-radius: 6px; border: solid 1px var(--panel);">
|
||||
<button class="_button itemHandle"><i class="ti ti-menu"></i></button>
|
||||
<MkInput
|
||||
class="input"
|
||||
small
|
||||
|
@ -246,8 +246,7 @@ watch([choices, multiple, expiration, atDate, atTime, after, unit], () => emit('
|
|||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
</style>
|
||||
<style lang="scss" module>
|
||||
|
||||
.itemHandle {
|
||||
cursor: move;
|
||||
width: 32px;
|
||||
|
|
Loading…
Reference in a new issue