Skip to content

Commit 1f30a05

Browse files
#25125 fixed not loading styles
1 parent 9e639d0 commit 1f30a05

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "flotiq-plugin-unejected",
3-
"version": "0.1.0",
2+
"name": "flotiq-plugin-kanban-view",
3+
"version": "1.0.0",
44
"private": true,
55
"dependencies": {
66
"@dnd-kit/core": "^6.1.0",

src/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import { parsePluginSettings } from './kanban-board/helpers';
44
import { handlePluginFormConfig } from './field-config/plugin-form';
55
import { handleManagePlugin } from './manage';
66
import { handleBoardPlugin } from './kanban-board';
7-
8-
import cssString from './styles/style.css';
97
import i18n from 'i18next';
108

9+
/* eslint import/no-webpack-loader-syntax: off */
10+
import cssString from '!!raw-loader!./styles/style.css';
11+
1112
const loadStyles = () => {
1213
if (!document.getElementById(`${pluginInfo.id}-styles`)) {
1314
const style = document.createElement('style');

src/plugin-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "flotiq.kanban-view",
33
"name": "Kanban view",
44
"description": "This plugin will change Content Objects grid into kanban board for selected Content Definition. ",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"repository": "https://github.com/flotiq/flotiq-ui-react-plugin-kanban-board",
77
"url": "https://localhost:3050/static/js/bundle.js",
88
"permissions": [

0 commit comments

Comments
 (0)