mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	A minimal change to replace data calls with attr as per guidelines (#19900)
This affects the manage topics on a repository. Namely the done button once changes are made. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		@@ -30,7 +30,7 @@ export function initRepoTopicBar() {
 | 
				
			|||||||
  saveBtn.on('click', () => {
 | 
					  saveBtn.on('click', () => {
 | 
				
			||||||
    const topics = $('input[name=topics]').val();
 | 
					    const topics = $('input[name=topics]').val();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    $.post(saveBtn.data('link'), {
 | 
					    $.post(saveBtn.attr('data-link'), {
 | 
				
			||||||
      _csrf: csrfToken,
 | 
					      _csrf: csrfToken,
 | 
				
			||||||
      topics
 | 
					      topics
 | 
				
			||||||
    }, (_data, _textStatus, xhr) => {
 | 
					    }, (_data, _textStatus, xhr) => {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user