Skip to content

Commit

Permalink
#25125 fixed not loading styles
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofBrylski committed Aug 11, 2024
1 parent 9e639d0 commit 1f30a05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flotiq-plugin-unejected",
"version": "0.1.0",
"name": "flotiq-plugin-kanban-view",
"version": "1.0.0",
"private": true,
"dependencies": {
"@dnd-kit/core": "^6.1.0",
Expand Down
5 changes: 3 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import { parsePluginSettings } from './kanban-board/helpers';
import { handlePluginFormConfig } from './field-config/plugin-form';
import { handleManagePlugin } from './manage';
import { handleBoardPlugin } from './kanban-board';

import cssString from './styles/style.css';
import i18n from 'i18next';

/* eslint import/no-webpack-loader-syntax: off */
import cssString from '!!raw-loader!./styles/style.css';

const loadStyles = () => {
if (!document.getElementById(`${pluginInfo.id}-styles`)) {
const style = document.createElement('style');
Expand Down
2 changes: 1 addition & 1 deletion src/plugin-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "flotiq.kanban-view",
"name": "Kanban view",
"description": "This plugin will change Content Objects grid into kanban board for selected Content Definition. ",
"version": "1.0.0",
"version": "1.0.1",
"repository": "https://github.com/flotiq/flotiq-ui-react-plugin-kanban-board",
"url": "https://localhost:3050/static/js/bundle.js",
"permissions": [
Expand Down

0 comments on commit 1f30a05

Please sign in to comment.