mirror of
https://github.com/go-vikunja/vikunja.git
synced 2025-12-05 19:16:51 -06:00
[PR #1738] fix(task): remove duplicate close button on mobile task detail #1721
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/go-vikunja/vikunja/pull/1738
Author: @kolaente
Created: 10/31/2025
Status: 🔄 Open
Base:
main← Head:claude/fix-duplicate-close-button-mobile-011CUfbqZNZYoki8vXzWMGFS📝 Commits (1)
982090dfix: remove duplicate close button on mobile task detail view📊 Changes
1 file changed (+2 additions, -3 deletions)
View changed files
📝
frontend/src/views/tasks/TaskDetailView.vue(+2 -3)📄 Description
When viewing a task in modal mode on mobile, both a back button and a close button were displayed, causing confusion. The back button condition
!isModal || isMobilemeant it would show on mobile even in modal mode.This fix changes the back button to only display when not in modal mode (
!isModal), ensuring only the close button appears when viewing tasks in a modal on mobile devices.Also removed the now-unused
isMobilevariable and its import.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.