mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 06:44:55 +08:00
Fix loading archived status for item card relations [SCI-9910] (#6944)
This commit is contained in:
parent
bd1e2696c1
commit
939d31b642
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class RepositoryRowConnectionsController < ApplicationController
|
||||||
repository_row = @relation_type == 'parent' ? connection.parent : connection.child
|
repository_row = @relation_type == 'parent' ? connection.parent : connection.child
|
||||||
|
|
||||||
{
|
{
|
||||||
name: repository_row.name,
|
name: repository_row.name_with_label,
|
||||||
code: repository_row.code,
|
code: repository_row.code,
|
||||||
path: repository_repository_row_path(repository_row.repository, repository_row),
|
path: repository_repository_row_path(repository_row.repository, repository_row),
|
||||||
repository_name: repository_row.repository.name,
|
repository_name: repository_row.repository.name,
|
||||||
|
|
Loading…
Reference in a new issue