From 19a0a18a3c7c0472156689f68b9273e6fcb539b6 Mon Sep 17 00:00:00 2001 From: Rundez Date: Tue, 24 Aug 2021 09:59:07 +0200 Subject: [PATCH 1/3] Added rich text and lineshift support Injecting HTML and replacing \n with
tag. --- .../ProjectProperties/ProjectProperty/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SharePointFramework/ProjectWebParts/src/components/ProjectInformation/ProjectProperties/ProjectProperty/index.tsx b/SharePointFramework/ProjectWebParts/src/components/ProjectInformation/ProjectProperties/ProjectProperty/index.tsx index f44f6db75..b9e4239fb 100644 --- a/SharePointFramework/ProjectWebParts/src/components/ProjectInformation/ProjectProperties/ProjectProperty/index.tsx +++ b/SharePointFramework/ProjectWebParts/src/components/ProjectInformation/ProjectProperties/ProjectProperty/index.tsx @@ -33,7 +33,10 @@ export const ProjectProperty = ({ return (
{model.displayName}
-
{model.value}
+
') + }}>
) } From 9745ee906982e417b37c09d958e9734fb84a86e7 Mon Sep 17 00:00:00 2001 From: Rundez Date: Mon, 30 Aug 2021 09:19:39 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8bd43641..03b0c448f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ Every change is marked with Pull Request ID. ## 1.2.8 - 17.06.2021 +## Added + +- Added rich text and lineshift support to field in project information #502 + ## Fixed + - Fixed issue with checklist status field missing options #485 ## 1.2.7 - 20.05.2021 @@ -30,7 +35,7 @@ Every change is marked with Pull Request ID. ## Changed - Changed Portfolio status view columns from "comments" to "status" #451 -- Improved project properties sync and fetching #444 #449 +- Improved project properties sync and fetching #444 #449 - Overviews using PortfolioAggregation (Benefit overview, Experience log, Delivery overview, Risk overview) now initially sort on project and grouping now automatically sorts group from A-Z by project. Also removes groups when sorting to avoid the issue found in #459 - Updated description for most of the SiteFields throughout 'Prosjektportalen' #467 - Deactivated Export to Excel button on portfolio overview as well as aggregated portfolio pages (Gevinstoversikt, Erfaringslogg, Leveranseoversikt, Risikooversikt) #475 @@ -98,20 +103,24 @@ Every change is marked with Pull Request ID. ## 1.2.2 - 2020-06-24 ### Added + - Planner tasks copied to the project site during provisioning get label Metodikk #276 #### 1.2.1 - 2020-05-22 ### Added + - Not using refiners from search anymore in `PortfolioOverview`, retrieving the values from the current collection instead #244 - Removed lists Information and Milestones #266 ### Fixed + - Removed "Add to portfolio" on Opportunities #270 ## 1.2.0 - 2020-02-21 ### Added + - Support for different phase term sets (to fully support different project templates/types) #201 - Support for different project metadata for different project types/templates - Ability to connect template(s) to list content config @@ -128,6 +137,7 @@ Every change is marked with Pull Request ID. - Support for description for list content configurations (#240) ### Fixed + - Header columns mispositioned in portfolio overview #207 - Issue with mandatory project properties not synced to created projects #215 - Disabled template dropdown in project configurator if there's only 1 template selected @@ -135,23 +145,27 @@ Every change is marked with Pull Request ID. ## 1.1.9 - 2020-01-20 ### Fixed + - Fixed rendering of status sections, some properties had no effect #180 - Sync project propertes after phase change #196 - Fixed an issue with installation script - Fixed an overview with retrieving document template and library picker #197 ### Added + - Installation writes to output which user it is connected with #187 ## 1.1.8 - 2020-01-10 ### Fixed + - Stopped using PnP connections (which caused some issues) #185 - Removed library URL field from Listeinnhold list #183 ## 1.1.7 - 2020-01-09 ### Added + - RiskMatrix added as separate web part #97 - RiskMatrix added to project status #172 - Improved error messages when provisioning new projects #170 @@ -162,30 +176,35 @@ Every change is marked with Pull Request ID. - Support for installing to /teams/ #177 ### Fixed + - Fixed lookups in list 'Prosjektkolonnekonfigurasjon' #142 - Fixed colors and columns not matching content #134 - Fixed an issue with invalid web part properties on Oppgaver.aspx #164 - Added support for currency fields in Portfolio Insights #155 -- Fields with _ in field name doesn't sync to portfolio +- Fields with \_ in field name doesn't sync to portfolio - Persists selection for ListContentSection/ExtensionsSection #182 ## 1.1.6 - 2019-11-14 ### Fixed + - Fixed a bug with current phase not being displayed in phase web part on project frontpage #149 ## 1.1.5 - 2019-11-13 ### Added + - Support for PSCredential in Install script #145 - Added missing resource for choice option (Choice_GtResourceAbsence_Linetasks) #148 ### Fixed + - Fixed project column configuration to make status colors work in portfolio overview #142 ## 1.1.4 - 2019-10-30 ### Added + - Added list 'Interessentregister' to portfolio level - Using list fields instead of content type for 'Dokumenter' to keep the OOTB document type dropdown #136 - Updated Standardmal.txt to include Parameters @@ -194,14 +213,16 @@ Every change is marked with Pull Request ID. ## 1.1.3 - 2019-10-15 ### Fixed + - Fixed issue with document template selector on frontpage #128 - Include active/inactive projects field to filter projects from portfolio #99 -- Fixed planner task creation. Still creating a plan even though setting `copyPlannerTasks` is set to `false` #132 +- Fixed planner task creation. Still creating a plan even though setting `copyPlannerTasks` is set to `false` #132 - Fixed an issue with duplicate list items #135 ## 1.1.2 - 2019-10-10 ### Fixed + - Added `-SkipTaxonomy` switch to Install script ## 1.1.1 - 2019-10-09 From d8e2675b8b6602e10502e6067878c740fb624a72 Mon Sep 17 00:00:00 2001 From: Ole Martin Pettersen Date: Mon, 30 Aug 2021 09:34:18 +0200 Subject: [PATCH 3/3] Fixed invalid JSON in package.json file --- SharePointFramework/PortfolioWebParts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SharePointFramework/PortfolioWebParts/package.json b/SharePointFramework/PortfolioWebParts/package.json index cbe61983b..32e07c06d 100644 --- a/SharePointFramework/PortfolioWebParts/package.json +++ b/SharePointFramework/PortfolioWebParts/package.json @@ -16,7 +16,7 @@ "postversion": "gulp versionSync", "lint": "eslint --ext .ts,.tsx ./src --color", "lint:fix": "eslint --ext .ts,.tsx ./src --color --fix && npm run prettier", - "prettier": "prettier --config .prettierrc '**/*.ts*' --write --loglevel silent", + "prettier": "prettier --config .prettierrc '**/*.ts*' --write --loglevel silent" }, "dependencies": { "@microsoft/sp-core-library": "1.11.0",