From 7c84dbca4f0f79dc90752105800a6964693283bd Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 29 Jan 2020 00:22:39 +0100 Subject: fix gitgraph commit hashes in dark theme (#10046) because the CSS was lazy-loaded the rules in arc-green did not win. included the css file in the main bundle to fix. the black dots can not be fixed via CSS because they are drawn in a `` element unfortunately. --- web_src/js/gitGraphLoader.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'web_src/js') diff --git a/web_src/js/gitGraphLoader.js b/web_src/js/gitGraphLoader.js index 997e179c84..f2687fa270 100644 --- a/web_src/js/gitGraphLoader.js +++ b/web_src/js/gitGraphLoader.js @@ -2,10 +2,7 @@ $(async () => { const graphCanvas = document.getElementById('graph-canvas'); if (!graphCanvas) return; - const [{ default: gitGraph }] = await Promise.all([ - import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'), - import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'), - ]); + const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'); const graphList = []; $('#graph-raw-list li span.node-relation').each(function () { -- cgit v1.2.3