@@ -129,8 +129,8 @@ qx.Class.define("osparc.dashboard.AppBrowser", {
129129 } ,
130130
131131 __itemClicked : function ( card ) {
132- const serviceData = card . getResourceData ( ) ;
133- this . _openResourceDetails ( serviceData ) ;
132+ const appData = card . getResourceData ( ) ;
133+ this . _openResourceDetails ( appData ) ;
134134 this . resetSelection ( ) ;
135135 } ,
136136
@@ -166,9 +166,9 @@ qx.Class.define("osparc.dashboard.AppBrowser", {
166166
167167 _populateCardMenu : function ( card ) {
168168 const menu = card . getMenu ( ) ;
169- const serviceData = card . getResourceData ( ) ;
169+ const appData = card . getResourceData ( ) ;
170170
171- const openButton = this . _getOpenMenuButton ( serviceData ) ;
171+ const openButton = this . _getOpenMenuButton ( appData ) ;
172172 if ( openButton ) {
173173 menu . add ( openButton ) ;
174174 }
@@ -188,7 +188,7 @@ qx.Class.define("osparc.dashboard.AppBrowser", {
188188 this . _toolbar . add ( testDataButton ) ;
189189 }
190190
191- const addServiceButton = new qx . ui . form . Button ( this . tr ( "Submit new service " ) , "@FontAwesome5Solid/plus-circle/14" ) ;
191+ const addServiceButton = new qx . ui . form . Button ( this . tr ( "Submit new app " ) , "@FontAwesome5Solid/plus-circle/14" ) ;
192192 addServiceButton . set ( {
193193 appearance : "form-button-outlined" ,
194194 visibility : hasRights ? "visible" : "excluded"
@@ -198,7 +198,7 @@ qx.Class.define("osparc.dashboard.AppBrowser", {
198198 } ,
199199
200200 __displayServiceSubmissionForm : function ( formData ) {
201- const addServiceWindow = new osparc . ui . window . Window ( this . tr ( "Submit a new service " ) ) . set ( {
201+ const addServiceWindow = new osparc . ui . window . Window ( this . tr ( "Submit a new app " ) ) . set ( {
202202 modal : true ,
203203 autoDestroy : true ,
204204 showMinimize : false ,
0 commit comments