UI: (internal) rename close button to close on incoming shares

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Max Berger
2026-04-25 21:58:25 +02:00
parent f1af26a798
commit 5c1e67918e
3 changed files with 6 additions and 6 deletions

View File

@@ -128,7 +128,7 @@ def test_incoming_shares(
).to_be_checked() ).to_be_checked()
# 6. Verify "shared by admin" and button visibility in the collection article # 6. Verify "shared by admin" and button visibility in the collection article
page.click('#incomingsharingscene button[data-name="cancel"]') page.click('#incomingsharingscene button[data-name="close"]')
expect(page.locator("#incomingsharingscene")).to_be_hidden() expect(page.locator("#incomingsharingscene")).to_be_hidden()
article = page.locator("article:not(.hidden)").first article = page.locator("article:not(.hidden)").first
@@ -179,5 +179,5 @@ def test_no_incoming_shares_message(
page.locator('#incomingsharingscene [data-name="nosharesmessage"]') page.locator('#incomingsharingscene [data-name="nosharesmessage"]')
).to_have_text("No incoming shares") ).to_have_text("No incoming shares")
page.click('#incomingsharingscene button[data-name="cancel"]') page.click('#incomingsharingscene button[data-name="close"]')
expect(page.locator("#incomingsharingscene")).to_be_hidden() expect(page.locator("#incomingsharingscene")).to_be_hidden()

View File

@@ -260,7 +260,7 @@
</table> </table>
<p class="hidden" data-name="nosharesmessage">No incoming shares</p> <p class="hidden" data-name="nosharesmessage">No incoming shares</p>
<form> <form>
<button type="button" class="green" data-name="cancel">Close</button> <button type="button" class="green" data-name="close">Close</button>
</form> </form>
<span class="error hidden" data-name="error"></span> <span class="error hidden" data-name="error"></span>
</section> </section>

View File

@@ -40,7 +40,7 @@ export class IncomingSharingScene {
this._password = password; this._password = password;
this._html_scene = get_element_by_id("incomingsharingscene"); this._html_scene = get_element_by_id("incomingsharingscene");
this._cancel_btn = get_element(this._html_scene, "[data-name=cancel]"); this._close_btn = get_element(this._html_scene, "[data-name=close]");
this._error_element = get_element(this._html_scene, "[data-name=error]"); this._error_element = get_element(this._html_scene, "[data-name=error]");
this._tbody = get_element(this._html_scene, "tbody[data-name=incomingsharesbody]"); this._tbody = get_element(this._html_scene, "tbody[data-name=incomingsharesbody]");
this._template = get_element(this._tbody, "[data-name=incomingsharerowtemplate]"); this._template = get_element(this._tbody, "[data-name=incomingsharerowtemplate]");
@@ -144,14 +144,14 @@ export class IncomingSharingScene {
show() { show() {
this._html_scene.classList.remove("hidden"); this._html_scene.classList.remove("hidden");
this._cancel_btn.onclick = () => pop_scene(); this._close_btn.onclick = () => pop_scene();
this._error_handler.clearError(); this._error_handler.clearError();
collectionsCache.getIncomingShares(this._user, this._password, this._error_handler.setError, (shares) => this._render_shares(shares)); collectionsCache.getIncomingShares(this._user, this._password, this._error_handler.setError, (shares) => this._render_shares(shares));
} }
hide() { hide() {
this._html_scene.classList.add("hidden"); this._html_scene.classList.add("hidden");
this._cancel_btn.onclick = null; this._close_btn.onclick = null;
this._error_handler.clearError(); this._error_handler.clearError();
} }