diff options
author | Phil Hughes <me@iamphill.com> | 2018-04-26 14:06:35 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-04-26 14:06:35 +0100 |
commit | 7311e69f5fa66f9cbf2e4100d47bd2a031879652 (patch) | |
tree | 2f13364aa8643c66b32909e9610000034e48430e /app/assets/javascripts/ide/index.js | |
parent | 9f35f6d9d53638aeb8ee917a388705458ddd87d7 (diff) | |
download | gitlab-ce-7311e69f5fa66f9cbf2e4100d47bd2a031879652.tar.gz |
added aria-label to buttons
updated variable name
removed un-used prop
Diffstat (limited to 'app/assets/javascripts/ide/index.js')
-rw-r--r-- | app/assets/javascripts/ide/index.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/assets/javascripts/ide/index.js b/app/assets/javascripts/ide/index.js index bbe3398e416..e5c47d09886 100644 --- a/app/assets/javascripts/ide/index.js +++ b/app/assets/javascripts/ide/index.js @@ -22,11 +22,7 @@ function initIde(el) { }); }, render(createElement) { - return createElement('ide', { - props: { - emptyStateSvgPath: el.dataset.emptyStateSvgPath, - }, - }); + return createElement('ide'); }, }); } |