Skip to content

Commit

Permalink
assets: fix eslinter
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed May 13, 2024
1 parent 4963060 commit 3cdce38
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 @@ -2,7 +2,7 @@ import React from "react";
import _get from "lodash/get";
import _isEmpty from "lodash/isEmpty";
import { invenioConfig } from "@inveniosoftware/react-invenio-app-ils";
import { Embed, Header, Button, Divider } from "semantic-ui-react";
import { Embed, Button, Divider } from "semantic-ui-react";
import PropTypes from "prop-types";
import { shelfLink } from "../../../utils";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function renderShelflink(item) {
: shelfLinkComponent(shelfLink(shelfNumber), shelfNumber);
return (
<InfoPopup message={renderCallNumber(item)}>
{itemShelf != undefined ? itemShelf : "-"}
{itemShelf !== undefined ? itemShelf : "-"}
</InfoPopup>
);
}
Expand Down

0 comments on commit 3cdce38

Please sign in to comment.