Merge pull request #1565 from basecamp/card-tags-problems

Fix: stale data when opening the tags and assignees selectors in the card perma
This commit is contained in:
Jorge Manrubia
2025-11-12 11:18:15 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -3,7 +3,7 @@ class Cards::AssignmentsController < ApplicationController
def new
@users = @board.users.active.alphabetically
fresh_when @users
fresh_when etag: [ @users, @card.assignees ]
end
def create
+1 -1
View File
@@ -3,7 +3,7 @@ class Cards::TaggingsController < ApplicationController
def new
@tags = Tag.all.alphabetically
fresh_when @tags
fresh_when etag: [ @tags, @card.tags ]
end
def create