Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: OPTIC-411: [lsp] Fix Follow Redirects improperly handles URLs in the url.parse() function #5416

Merged
merged 18 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions web/dist/libs/editor/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions web/libs/editor/src/assets/styles/global.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "~antd/dist/antd.css";

@import "./variables";
@import "./mixins";
@import "./functions";
Expand Down
2 changes: 1 addition & 1 deletion web/libs/editor/src/components/NewTaxonomy/NewTaxonomy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const NewTaxonomy = ({
}}
treeCheckStrictly
showCheckedStrategy={TreeSelect.SHOW_ALL}
treeExpandAction="click"
treeExpandAction={false}
dropdownMatchSelectWidth={dropdownWidth}
placeholder={options.placeholder || 'Click to add...'}
style={style}
Expand Down
1 change: 0 additions & 1 deletion web/libs/editor/src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'antd/dist/antd.css';
import './core/feature-flags';
import './assets/styles/global.scss';
import { LabelStudio } from './LabelStudio';
Expand Down
Loading