mirror of
				https://github.com/gristlabs/grist-core.git
				synced 2025-06-13 20:53:59 +00:00 
			
		
		
		
	Summary: Radiobutton on the billing page was wrongly connected to the computed observable, which resulted in an error when one was switching the tier using this radio button directly. This was issue only in Firefox, as Chrome was muting error events from cross origin scripts - so Grist ignored such errors. Now this is changed and those errors are visible to Grist. Test Plan: Updated Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: georgegevoian Differential Revision: https://phab.getgrist.com/D4119
		
			
				
	
	
		
			18 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
  <meta charset="utf8">
 | 
						|
  <!-- INSERT BASE -->
 | 
						|
  <link rel="icon" type="image/x-icon" href="icons/favicon.png" />
 | 
						|
  <link rel="stylesheet" href="icons/icons.css">
 | 
						|
  <!-- INSERT LOCALE -->
 | 
						|
  <!-- INSERT CONFIG -->
 | 
						|
  <!-- INSERT CUSTOM -->
 | 
						|
  <title>Loading...<!-- INSERT TITLE SUFFIX --></title>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
  <!-- INSERT ERROR -->
 | 
						|
  <script crossorigin="anonymous" src="errorPages.bundle.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |