Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
Self-hosted
If you are self-hosting, what version of Baserow are you running?
version 1.34.2
If you are self-hosting, which installation method do you use to run Baserow?
Docker version 24.0.5, build ced0996
What are the exact steps to reproduce this issue?
Used docker image and external pg db
Docker command:
docker run \ -d \ --name baserow_gaurang \ -e BASEROW_PUBLIC_URL=baserow_public_url \ -e DATABASE_URL=docker_pg_url \ -e BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION=false \ -e BASEROW_OSS_ONLY=true \ -v baserow_data:/baserow/data \ -p 10095:80 \ --restart unless-stopped \ baserow/baserow:1.34.2
Now referring from community post : Is there a way to hide premium features? BASEROW_OSS_ONLY=true
is supposed to hide the premium features icons from UI but still using this variable I can see the locked icons in the UI. My use case is very simple and the don’t need any premium features. Features offered under MIT License are more than enough for me.
The question is - Whether my understanding of intended outcome of variable BASEROW_OSS_ONLY=true
correct? Or is it meant for something else? Is there any other way to stop seeing locked features in UI?