Skip to content

Commit

Permalink
Fix Markup Tags in Station News (#30169)
Browse files Browse the repository at this point in the history
* Fix (hopefully)

* Fixed Spelling Mistake and minor Code Cleanup

* Revert "Fixed Spelling Mistake and minor Code Cleanup" due to Pull Request Guidelines

This reverts commit cee3e0226b349187bd8fd8b639e161fb877e8bdb.
  • Loading branch information
1337Dakota authored and VMSolidus committed Oct 20, 2024
1 parent 54893bd commit 067097c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void UpdateState(NewsArticle article, int targetNum, int totalNum, bool n
Author.Visible = true;

PageName.Text = article.Title;
PageText.SetMarkup(article.Content);
PageText.SetMarkupPermissive(article.Content);

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 34 in Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'RichTextLabel' does not contain a definition for 'SetMarkupPermissive' and no accessible extension method 'SetMarkupPermissive' accepting a first argument of type 'RichTextLabel' could be found (are you missing a using directive or an assembly reference?)

PageNum.Text = $"{targetNum}/{totalNum}";

Expand Down

0 comments on commit 067097c

Please sign in to comment.