Skip to content

Commit

Permalink
remove include_deleted datasets as it's not working, css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantsan committed Jul 26, 2024
1 parent c726ace commit 34fa166
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
13 changes: 13 additions & 0 deletions ckanext/bulk/assets/scss/elements/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
@use "utils" as u;
@use "variables" as v;

.primary {
.bulk-manager {
label.form-label {
float: unset;
width: unset;
}

.controls {
margin-left: 0;
}
}
}

.toggle-switch {
label {
background-color: white;
Expand Down
3 changes: 3 additions & 0 deletions ckanext/bulk/assets/scss/elements/_progressbar.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.bulk-progress-bar {
position: relative;
margin-bottom: 1rem;

#pb-runner-wrapper {
width: 100%;
background: #e2e2e2;
Expand Down
2 changes: 1 addition & 1 deletion ckanext/bulk/assets/styles/bulk.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion ckanext/bulk/entity_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ def search_entities_by_filters(
"start": start,
"include_private": True,
"include_drafts": True,
"include_deleted": True,
},
)

Expand Down
2 changes: 1 addition & 1 deletion ckanext/bulk/templates/bulk/manager_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div class="form-group toggle-switch">
<input type="checkbox" checked="checked" id="global_operator" name="global_operator" value="global_operator">
<label for="global_operator" class="container">
<label for="global_operator">
{% snippet 'bulk/snippets/svg/magnifier.svg' %}
{{_("Global operator:") }}
<div class="action">
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ckanext-bulk
version = 0.1.0
version = 0.1.1
description = Bulk update for CKAN datasets/resources
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 34fa166

Please sign in to comment.