Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BITV] 9.4.1.1/0.2 On the page, there are multiple IDs that are identical - see "resourceNameFintestExplorer". #37098

Closed
10 tasks done
Assignees
Labels
Milestone

Comments

@AndyScherzinger
Copy link
Member

AndyScherzinger commented Mar 7, 2023

Details

https://report.bitvtest.de/default-en/d63601ac-cb34-4645-8256-66bec78964a0.html#checkpoint-3fd73cfb9c-v0-n2

Details

https://report.bitvtest.de/default-en/d63601ac-cb34-4645-8256-66bec78964a0.html#checkpoint-3fd73cfb9c-v0-n1


@ShGKme
Copy link
Contributor

ShGKme commented Oct 4, 2023

Simple scrip for testing

const ids = [...document.querySelectorAll('[id]')].reduce((ids, el) => {
    ids.set(el.id, [...(ids.get(el.id) ?? []), el])
    return ids
}, new Map())
const duplicates = [...ids.entries()].filter(([id, els]) => els.length > 1)
console.log(duplicates.length ? '❌' : '✅', new Map(duplicates))

@ShGKme
Copy link
Contributor

ShGKme commented Oct 5, 2023

Reopen until @nextcloud/vue is updated on the server.

@ShGKme ShGKme reopened this Oct 5, 2023
@AndyScherzinger AndyScherzinger added this to the Nextcloud 28 milestone Oct 5, 2023
@ShGKme ShGKme removed the overview label Oct 5, 2023
@ShGKme ShGKme closed this as completed Oct 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment