fix: prefixpath and link href in all filter
This commit is contained in:
parent
5e82ee8085
commit
a96ab8590a
|
|
@ -33,7 +33,7 @@ const ContentCategory = (props: { group?: string; type: string }) => {
|
|||
? `/polda/${poldaName}`
|
||||
: satkerName
|
||||
? `/satker/${satkerName}`
|
||||
: "/";
|
||||
: "";
|
||||
|
||||
useEffect(() => {
|
||||
initFetch();
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ const Navbar = () => {
|
|||
? `/polda/${poldaName}`
|
||||
: satkerName
|
||||
? `/satker/${satkerName}`
|
||||
: "/";
|
||||
: "";
|
||||
|
||||
let menu = "";
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ const NewContent = (props: { group: string; type: string }) => {
|
|||
? `/polda/${poldaName}`
|
||||
: satkerName
|
||||
? `/satker/${satkerName}`
|
||||
: "/";
|
||||
: "";
|
||||
|
||||
useEffect(() => {
|
||||
const timer = setTimeout(() => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue