mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-01 16:28:06 +09:00
Fix bug
This commit is contained in:
parent
b954245a4d
commit
edc0ae9eef
@ -234,7 +234,7 @@ export default Vue.extend({
|
||||
top() {
|
||||
let z = 0;
|
||||
|
||||
const ws = this.$root.os.windows.getAll().filter(w => w != this);
|
||||
const ws = Array.from(this.$root.os.windows.getAll()).filter(w => w != this);
|
||||
for (const w of ws) {
|
||||
const m = w.$refs.main;
|
||||
const mz = Number(document.defaultView.getComputedStyle(m, null).zIndex);
|
||||
|
Loading…
Reference in New Issue
Block a user