Fix row name update [SCI-12260]

This commit is contained in:
Anton 2025-08-14 11:50:18 +02:00
parent 0a2a1a6d69
commit 00124430d0

View file

@ -214,7 +214,7 @@ class RepositoryRowsController < ApplicationController
repository_column: update_params['repository_cells']&.keys&.first ||
I18n.t('repositories.table.row_name') })
record_annotation_notification(@repository_row, row_cell_update.cell) if row_cell_update.cell.value_type == 'RepositoryTextValue'
record_annotation_notification(@repository_row, row_cell_update.cell) if row_cell_update.cell && row_cell_update.cell.value_type == 'RepositoryTextValue'
end
@reminders_present = @repository_row.repository_cells.with_active_reminder(@current_user).any?