File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818 <v-tooltip activator =" parent" location =" top" :open-delay =" 200" >{{ item.name }}</v-tooltip >
1919 <router-link
2020 :to =" {
21- name: this. searchType === 'entities' ? 'EntityDetails' : 'IndicatorDetails',
21+ name: searchType === 'entities' ? 'EntityDetails' : 'IndicatorDetails',
2222 params: { id: item.id }
2323 }"
2424 >{{ item.name }}</router-link
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ export default {
152152 count: itemsPerPage ,
153153 query: this .extractParamsFromSearchQuery (this .searchQuery , " value" )
154154 };
155- axios .post (" http://localhost:3000 /api/v2/observables/search" , params ).then (response => {
155+ axios .post (" /api/v2/observables/search" , params ).then (response => {
156156 this .items = response .data .observables ;
157157 this .total = response .data .total ;
158158 });
You can’t perform that action at this time.
0 commit comments