mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	fix(tags): Fix TagContent not sorting the page list when opening a tag (#1692)
This commit is contained in:
		@@ -93,7 +93,7 @@ export default ((opts?: Partial<TagContentOptions>) => {
 | 
			
		||||
                        </>
 | 
			
		||||
                      )}
 | 
			
		||||
                    </p>
 | 
			
		||||
                    <PageList limit={options.numPages} {...listProps} sort={opts?.sort} />
 | 
			
		||||
                    <PageList limit={options.numPages} {...listProps} sort={options?.sort} />
 | 
			
		||||
                  </div>
 | 
			
		||||
                </div>
 | 
			
		||||
              )
 | 
			
		||||
@@ -114,7 +114,7 @@ export default ((opts?: Partial<TagContentOptions>) => {
 | 
			
		||||
          <div class="page-listing">
 | 
			
		||||
            <p>{i18n(cfg.locale).pages.tagContent.itemsUnderTag({ count: pages.length })}</p>
 | 
			
		||||
            <div>
 | 
			
		||||
              <PageList {...listProps} />
 | 
			
		||||
              <PageList {...listProps} sort={options?.sort} />
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user