From 8a8403834f362fd341f526430b21457cf786d9c8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 6 May 2021 17:27:50 +0200 Subject: [PATCH] :lipstick: Cosmetic change on onboarding modal. --- frontend/src/app/main/ui/onboarding.cljs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/onboarding.cljs b/frontend/src/app/main/ui/onboarding.cljs index 963e0cae3..a14f22a9f 100644 --- a/frontend/src/app/main/ui/onboarding.cljs +++ b/frontend/src/app/main/ui/onboarding.cljs @@ -6,6 +6,7 @@ (ns app.main.ui.onboarding (:require + [app.config :as cf] [app.common.spec :as us] [app.main.data.dashboard :as dd] [app.main.data.messages :as dm] @@ -38,9 +39,9 @@ [:div.modal-right [:div.modal-title [:h2 "Welcome to Penpot!"]] - [:span.release "Alpha version 1.0"] + [:span.release "Alpha version " (:main @cf/version)] [:div.modal-content - [:p "We are very happy to introduce you to the very first Alpha 1.0 release."] + [:p "We are very happy to introduce you to the very first Alpha release."] [:p "Penpot is still at development stage and there will be constant updates. We hope you enjoy the first stable version."]] [:div.modal-navigation [:button.btn-secondary {:on-click next} "Continue"]]]