Skip to content

Commit

Permalink
Merge pull request #4026 from valadas/rm-svg-imports
Browse files Browse the repository at this point in the history
Fixes 2 wrong svg imports in resource-manager
  • Loading branch information
mitchelsellers committed Sep 1, 2020
2 parents 24f02ea + e61e190 commit 5b08158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Folders from "./Folders";
import { Scrollbars } from "react-custom-scrollbars";
import "./style.less";

const searchIconImage = require("!raw-loader!./img/search.svg");
const searchIconImage = require("!raw-loader!./img/search.svg").default;

export default class FolderSelector extends Component {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { Component } from "react";
import { PropTypes } from "prop-types";
import "./style.less";

const folderIcon = require("!raw-loader!./img/folder.svg");
const folderIcon = require("!raw-loader!./img/folder.svg").default;

export default class Folders extends Component {

Expand Down

0 comments on commit 5b08158

Please sign in to comment.