From 00c804b3a0b937838bfbb1f36c25f06c1fe6ab4d Mon Sep 17 00:00:00 2001 From: MUH <58882014+muhammedBkf@users.noreply.github.com> Date: Mon, 9 Dec 2024 20:08:46 +0100 Subject: [PATCH] Update `link_to_property` to include `propertyid` in the URL parameters of instances subtab (#878) --- app/helpers/instances_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/instances_helper.rb b/app/helpers/instances_helper.rb index 79e5b1758..18a4dddd2 100644 --- a/app/helpers/instances_helper.rb +++ b/app/helpers/instances_helper.rb @@ -52,7 +52,7 @@ def link_to_class(ontology_acronym, conceptid) def link_to_property(property, ontology_acronym) link_to extract_label_from(property), - ontology_path(ontology_acronym, p: 'properties'), + ontology_path(ontology_acronym, p: 'properties', propertyid: property), { target: '_blank'} end