Skip to content

Commit

Permalink
pagination label and svg fixes (#1765)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonymol-aot authored Nov 22, 2023
1 parent 3f77e6f commit 4837b57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ function BpmnTable() {
<span className="ml-2">
{t("Showing")} {(limit * activePage) - (limit - 1)} {t("to")}&nbsp;
{Math.min(limit * activePage, totalProcess)} {t("of")}&nbsp;
{totalProcess} {t("entries")}
{totalProcess} {t("results")}
</span>
</div>
<div className="d-flex align-items-center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function DmnTable() {
{t("Showing")} {(limit * activePage) - (limit - 1)} {t("to")}
&nbsp;
{Math.min(limit * activePage, totalProcess)} {t("of")}&nbsp;
{totalProcess} {t("entries")}
{totalProcess} {t("results")}
</span>
</div>
<div className="d-flex align-items-center">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import React from "react";
import NoFilterSelectedImage from "./undraw_to_do_re_jaef.svg";
import { ReactComponent as NoFilterImage } from "./undraw_to_do_re_jaef.svg";
import { Translation } from "react-i18next";

function NoTaskSelectedMessage() {
return (
<div className="d-flex flex-column h-100 align-items-center justify-content-center">
<img
src={NoFilterSelectedImage}
<NoFilterImage
style={{ width: "100%", height: "150PX" }}
/>
<h3 className="text-center">
Expand Down

0 comments on commit 4837b57

Please sign in to comment.