UI action "Preview Article with Blocks" not working as expectedDescriptionThe UI action "Preview Article with Blocks" for published Knowledge article opens the page that does not show the Knowledge blocks listed in the right side panel under "Blocks in Article"Steps to Reproduce Steps to Reproduce :1. Go to Knowledge Blocks --> Published from the filter navigator2. Click on any published published Knowledge block3. Go to "Articles" under Related lists and open the Article4. Click the "Preview Article with Blocks" under Related links5. Observe that the page comes up with empty list under "Blocks in Article"6. Remove the last or few characters from the word "published" in the URL. (Eg : publish or publishe) and reload the page7. Notice that the page comes up with the knowledge blocks listed as expected under "Blocks in Article" panel on the right sideWorkaround1. Go to script include with sys id 5ae68cb0eb4131007128a5fc5206fefc.2. Add the below code. getCorrectlyPaddedNumber: function(number) { number = String(number); if(gs.nil(number)) return number; var grNumber = new GlideRecord("sys_number"); grNumber.addQuery("category", "=", "kb_knowledge"); grNumber.query(); if (grNumber.next()) { this.PREFIX = grNumber.prefix + ''; this.DIGITS = grNumber.maximum_digits; } if (number.length == (this.DIGITS + this.PREFIX.length)) return number; number = number.replace(this.PREFIX, ''); //Remove prefix number = number.replace(/^0+/, ''); // Remove leading zeros number = number.padStart(this.DIGITS, '0'); // Pad with zeros to meet the required length return this.PREFIX + number; //Add the prefix back }, 3. Save the script include.Related Problem: PRB1810451