Skip to content

Commit a9e97ea

Browse files
Merge pull request smartdevicelink#5 from Itileda/hotfix/extra_letter_in_front_of_name
fix extra letter in front of appName
2 parents c1d9177 + 80dbb1a commit a9e97ea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/view/info/appsView.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,14 @@ SDL.InfoAppsView = Em.ContainerView.create({
8888
SDL.SDLModel.driverDeviceInfo &&
8989
apps[i].deviceName == SDL.SDLModel.driverDeviceInfo.name);
9090

91-
var ownerMarker = driverDevice ? '"D" ' : '"P" ';
92-
9391
appIndex = SDL.SDLModel.data.registeredApps.indexOf(apps[i]);
9492

9593
this.get('listOfApplications.list.childViews').
9694
pushObject(SDL.Button.create({
9795
action: driverDevice ? 'onActivateSDLApp' :
9896
'onDeactivatePassengerApp',
9997
target: 'SDL.SDLController',
100-
text: ownerMarker + apps[i].appName + ' - ' + apps[i].deviceName,
98+
text: apps[i].appName + ' - ' + apps[i].deviceName,
10199
appName: apps[i].appName,
102100
appID: apps[i].appID,
103101
classNames: 'list-item button',

0 commit comments

Comments
 (0)