Skip to content
Snippets Groups Projects
Commit f52ac7d8 authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Remove comments

parent 4c483174
No related branches found
No related tags found
No related merge requests found
Pipeline #188588 passed
...@@ -4,7 +4,6 @@ import {name as pkgName} from './../package.json'; ...@@ -4,7 +4,6 @@ import {name as pkgName} from './../package.json';
import nameMapping from './icon_mapping.json'; import nameMapping from './icon_mapping.json';
export function getIconSVGURL(name, iconSet) { export function getIconSVGURL(name, iconSet) {
console.log("+++++++++++", name, iconSet);
if(iconSet !== '' && iconSet !== undefined) { if(iconSet !== '' && iconSet !== undefined) {
return commonUtils.getAssetURL(pkgName, 'icons_' + encodeURI(iconSet) + '/' + encodeURI(name) + '.svg'); return commonUtils.getAssetURL(pkgName, 'icons_' + encodeURI(iconSet) + '/' + encodeURI(name) + '.svg');
} }
...@@ -14,7 +13,6 @@ export function getIconSVGURL(name, iconSet) { ...@@ -14,7 +13,6 @@ export function getIconSVGURL(name, iconSet) {
export function mapName(name) { export function mapName(name) {
let mappedPath = nameMapping[name]; let mappedPath = nameMapping[name];
console.log("---------------------", mappedPath);
if (mappedPath !== undefined && mappedPath !== '') { if (mappedPath !== undefined && mappedPath !== '') {
return mappedPath; return mappedPath;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment