Skip to content
Snippets Groups Projects
Commit 1a2fbb6a authored by Eugen Ciur's avatar Eugen Ciur
Browse files

some basic/manual linting

parent 471f30dc
No related branches found
No related tags found
No related merge requests found
......@@ -10,5 +10,7 @@ export default class BreadcrumbComponent extends Component {
]);
@action
change(node_id) {}
change(node_id) {
console.log(node_id);
}
}
......@@ -3,6 +3,7 @@ import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
import { inject as service } from '@ember/service';
const COLORS = [
'#ff0000',
'#0000ff',
......@@ -10,8 +11,8 @@ const COLORS = [
'#661200',
'#ce5c00',
'#5c3566',
'#4e9a06'
]
'#4e9a06',
];
function _random_color() {
/*
......
......@@ -3,11 +3,11 @@ import { helper } from '@ember/component/helper';
function default_string(args) {
let [string, default_value] = args;
if (string){
if (string) {
return string;
}
return default_value;
}
export default helper(default_string);
\ No newline at end of file
export default helper(default_string);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment