[O] Fix TSLint: " should be '

This commit is contained in:
Hykilpikonna
2019-08-21 15:52:05 +08:00
parent 615e4fa2cb
commit 8cca38b55a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import Constants from '@/constants';
})
export default class Navigation extends Vue
{
public activeIndex: string = "0";
public activeIndex: string = '0';
@Prop() courses: any;
+1 -1
View File
@@ -7,5 +7,5 @@ export default class Constants
* Base url for api access
* TODO: Use https for actual usage
*/
public static API_URL: string = "http://cn2.hydev.org:24021/api";
public static API_URL: string = 'http://cn2.hydev.org:24021/api';
}