1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-21 02:55:25 +02:00
This commit is contained in:
syuilo
2026-04-20 20:07:49 +09:00
parent 28dec6b0a3
commit f04799a4f5
2 changed files with 9 additions and 3 deletions

View File

@@ -71,7 +71,11 @@ onUnmounted(() => {
watch(selectedId, (newId) => {
if (newId == null) return;
engine.value!.load(newId);
nextTick(() => {
engine.value!.load(newId);
engine.value!.resize();
});
});
function ok() {
@@ -137,11 +141,13 @@ async function cancel() {
height: 100%;
display: block;
}
.canvas:focus {
outline: none;
}
.unselectButton {
position: absolute;
top: 8px;
right: 8px;
}
</style>