Skip to content

Commit

Permalink
Merge branch 'datapackage_tabular-data' into thuenen_4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ridoo committed Oct 1, 2024
2 parents 520099d + 5324e2c commit 2b387ed
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 0 additions & 1 deletion geonode/geoserver/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,6 @@ def clean_styles(layer, gs_catalog: Catalog):
if gs_dataset.default_style is None:
# ignore dataset without style
pass

logger.debug(f'clean_styles: Retrieving style "{gs_dataset.default_style.name}" for cleanup')
style = gs_catalog.get_style(name=gs_dataset.default_style.name, workspace=None, recursive=True)
if style:
Expand Down
23 changes: 23 additions & 0 deletions geonode/layers/migrations/0045_alter_attribute_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.9 on 2024-07-04 16:07

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("layers", "0044_alter_dataset_unique_together"),
]

operations = [
migrations.AlterField(
model_name="attribute",
name="description",
field=models.TextField(
blank=True,
help_text="description of attribute to be used in metadata",
null=True,
verbose_name="attribute description",
),
),
]

0 comments on commit 2b387ed

Please sign in to comment.