Skip to content

Commit

Permalink
fix urls for modulesByArtType
Browse files Browse the repository at this point in the history
  • Loading branch information
userXinos committed Oct 22, 2023
1 parent 24f2685 commit d2c6f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/regulation/formatValueRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export default [
(modules) => (createElement) => modules == null ? null : (
createElement('div', null,
modules.map((mod) => (
createElement('a', { href: `/${mod.SlotType}#${mod.Name}` },
createElement('a', { href: `${process.env.BASE_URL}${mod.SlotType}#${mod.Name}` },
createElement(Icon, { name: mod.Icon, dir: 'game/Modules' }),
store.state.userSettings.compactModulesByArtTypeTable ? null : createElement('p', null, t(mod.TID)),
)
Expand Down

0 comments on commit d2c6f03

Please sign in to comment.