File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
packages/common-ui/src/components Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 8383 </v-list-item >
8484
8585 <div v-if =" c.isOpen" class =" px-4 py-2 bg-blue-grey-lighten-5" >
86- <card-loader :qualified_id =" c.id" :view-lookup =" viewLookup" class =" elevation-1" />
86+ <card-loader :qualified_id =" idQualify( c.id) " :view-lookup =" viewLookup" class =" elevation-1" />
8787
8888 <tags-input
8989 v-show =" internalEditMode === 'tags' && editMode === 'full'"
@@ -215,6 +215,15 @@ export default defineComponent({
215215 }
216216 },
217217
218+ idQualify(id : string ): string {
219+ const delimiters = id .includes (' -' );
220+ if (delimiters ) {
221+ return id ;
222+ } else {
223+ return ` ${this .courseId }-${id } ` ;
224+ }
225+ },
226+
218227 first() {
219228 this .page = 1 ;
220229 this .populateTableData ();
You can’t perform that action at this time.
0 commit comments