From 72f9d4f7176c60568719dbec132eab20822ef1a7 Mon Sep 17 00:00:00 2001
From: martiivGylden <martin.iversen@gyldendal.no>
Date: Mon, 20 May 2024 14:44:54 +0200
Subject: [PATCH] Finished version 1.0 of parser

---
 dashBoard.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dashBoard.py b/dashBoard.py
index eaa119f..3a33a36 100644
--- a/dashBoard.py
+++ b/dashBoard.py
@@ -279,7 +279,7 @@ def createIndicatorView(diagram: Diagram, frame: customtkinter.CTkScrollableFram
         
         indicatorHead = ttk.Label(indicatorFrame, text=f"Indicator: {indicatorID} Name: {indicatorName}" , style="IndicatorHeader.TLabel")
         indicatorDescription = ttk.Label(indicatorFrame, text=f"Indicator Value: {indicatorValue}", style="IndicatorInfo.TLabel")
-        indicatorDescription2 = ttk.Label(indicatorFrame, text=f"Measurement date: {date} Frequency: {frequency}" , style="IndicatorInfo.TLabel")
+        indicatorDescription2 = ttk.Label(indicatorFrame, text=f"Measurement date: {date}     Frequency: {frequency}" , style="IndicatorInfo.TLabel")
         indicatorDescription3 = ttk.Label(indicatorFrame, text=f"Interpretation: {interpretation}", style="IndicatorInfo.TLabel", wraplength=0.4*frameWidth)
         description4 = ttk.Label(indicatorFrame, text=f"Amount of associations: {amoubtOfAssociates}", style="IndicatorInfo.TLabel")
         
-- 
GitLab