No create and open button

trying to follow tutorial on creating an app but can’t find the button 4 in this. “create” is shown though.

already made an app in my hard drive and started it with no problem. it says app is ready.

There seems to be a bit of a regression on how the FE handles the no parametrization case.

If you replace the code in app/my_entity_type/controller.py with the snippet below you should be able to continue:

from viktor.core import ViktorController
from viktor.parametrization import Parametrization

class BeamParametrization(Parametrization):
    pass


class Controller(ViktorController):
    label = 'My Entity Type'
    parametrization = BeamParametrization