modified from final to const as it won’t change value

This commit is contained in:
Lucien Cartier-Tilet 2020-05-05 19:33:57 +02:00
parent 404e79211e
commit 61fe6f71a4
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import 'dart:html';
import './navbar.dart' show makeNavbar;
final image_header = 'https://cdn.phundrak.com/img/mahakala-monochrome.png';
const image_header = 'https://cdn.phundrak.com/img/mahakala-monochrome.png';
Future<Element> makeHeader() async {
var header = Element.tag('header');