dosubot[bot] commented on issue #32150:
URL: https://github.com/apache/superset/issues/32150#issuecomment-2637164559
<!-- Greeting -->
Hey @Maksim252-c! I'm here to help you with any bugs, questions, or
contributions you have. Just let me know how I can assist you!
<!-- Answer -->
The issue you're experiencing with the tags not being visible in Superset,
despite setting `TAGGING_SYSTEM=True` and `ENABLE_TAGS=True`, might be related
to feature flags in the codebase. Specifically, the tags feature visibility is
controlled by the `TaggingSystem` feature flag. Even if the configuration
settings are enabled, the tags will not be displayed if the `TaggingSystem`
feature flag is not enabled in the code.
Here's a relevant code snippet that shows this conditional logic:
```tsx
{
Cell: ({
row: {
original: { tags = [] },
},
}: any) => (
// Only show custom type tags
<TagsList tags={tags.filter((tag: Tag) => tag.type === 1)} />
),
Header: t('Tags'),
accessor: 'tags',
disableSortBy: true,
hidden: !isFeatureEnabled(FeatureFlag.TaggingSystem),
},
```
The `hidden` property is set based on the result of
`isFeatureEnabled(FeatureFlag.TaggingSystem)`. If this feature flag is not
enabled, the tags column will be hidden, regardless of the `TAGGING_SYSTEM` and
`ENABLE_TAGS` settings
<sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/pages/SavedQueryList/index.tsx)</sup>.
To resolve this, ensure that the `TaggingSystem` feature flag is enabled in
your Superset configuration. You might need to check the feature flag settings
in your deployment to confirm this.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
---
<sup>Help Dosu learn! Give it feedback: [Great
Response](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=great_response)
| [Irrelevant
Answer](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=irrelevant_answer)
| [Incorrect
Sources](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=incorrect_sources)
| [Too
Verbose](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=hallucination)
|
[Other](https://app.dosu.dev/response-feedback/3cce4cf6-45c0-4d52-9dc0-a49e12f0e3da?feedback_type=other)</sup>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]