code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/widgets/histogram/chart.js b/src/widgets/histogram/chart.js @@ -1266,6 +1266,8 @@ module.exports = cdb.core.View.extend({ var data = this.model.get('data'); this._calcBarWidth(); + // Remove spacing if not enough room for the smallest case + var spacing = ((data.length * 2) - 1) > this.chartWidth() ? 0...
2
diff --git a/src/screens/editor/children/postOptionsModal.tsx b/src/screens/editor/children/postOptionsModal.tsx @@ -90,6 +90,9 @@ const PostOptionsModal = forwardRef(({ if (scheduledForDate) { setScheduleLater(true); setScheduledFor(scheduledForDate); + } else { + setScheduleLater(false); + setScheduledFor(''); } },[s...
12
diff --git a/README.md b/README.md @@ -74,8 +74,8 @@ npm install jquery.tabulator --save ### CDNJS To access Tabulator directly from the CDNJS CDN servers, include the following two lines at the start of your project, instead of the localy hosted versions: ```html -<link href="https://cdnjs.cloudflare.com/ajax/libs/tab...
3
diff --git a/js/test/base/functions/test.number.js b/js/test/base/functions/test.number.js @@ -45,9 +45,9 @@ it ('decimalToPrecision: truncation (to N significant digits)', () => { equal (decimalToPrecision ('0.0001234567', TRUNCATE, 7, SIGNIFICANT_DIGITS), '0.0001234567') equal (decimalToPrecision ('0.000123456', TRUN...
1
diff --git a/character-physics.js b/character-physics.js @@ -199,16 +199,16 @@ class CharacterPhysics { .decompose(this.player.position, this.player.quaternion, this.player.scale); this.player.matrixWorld.copy(this.player.matrix); - this.player.updateMatrixWorld(); + // this.player.updateMatrixWorld(); - if (this.avata...
2
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js @@ -7,8 +7,8 @@ module.exports = { theme: 'millidocs', head: [ ['link', { rel: 'icon', href: '/favicon.png' }], - ['script', { type: 'text/javascript', src: `${base}/embed.js` }], - ['script', { type: 'text/javascript', src: `${base}/extensions/external-e...
1
diff --git a/commands/yagcommmand.go b/commands/yagcommmand.go @@ -240,14 +240,10 @@ func (cs *CustomCommand) Enabled(client *redis.Client, channel string, gState *d } } - if cs.Key != "" || cs.CustomEnabled { - return true, false, nil - } - // Return from global settings then for _, cmd := range config.Global { if cmd...
1
diff --git a/plugins/rspamd.js b/plugins/rspamd.js @@ -145,6 +145,7 @@ exports.hook_data_post = function (next, connection) { res.on('data', function (chunk) { rawData += chunk; }); res.on('end', function () { var r = plugin.parse_response(rawData, connection); + if (!r) return callNext(); if (!r.data) return callNext(...
9
diff --git a/Source/dom/layers/__tests__/HotSpot.test.js b/Source/dom/layers/__tests__/HotSpot.test.js @@ -35,6 +35,7 @@ test('should create a new HotSpot from a layer', (_context, document) => { targetId: artboard2.id, type: 'Flow', animationType: 'slideFromRight', + maintainScrollPosition: false, }) })
1
diff --git a/src/helpers.php b/src/helpers.php @@ -273,6 +273,10 @@ if (! function_exists('oldValueDefaultOrFallback')) { return old(square_brackets_to_dots($field_name)); } - return $value ?? $default ?? $fallback; + if (array_key_exists('value', $field)) { + return $value; + } + + return $default ?? $fallback; } }
13
diff --git a/test/jasmine/tests/gl3d_hover_click_test.js b/test/jasmine/tests/gl3d_hover_click_test.js @@ -750,6 +750,161 @@ describe('Test gl3d trace click/hover:', function() { .then(done); }); + function scroll(target, amt) { + return new Promise(function(resolve) { + target.dispatchEvent(new WheelEvent('wheel', {de...
0
diff --git a/semcore/flex-box/src/Box/useBox.tsx b/semcore/flex-box/src/Box/useBox.tsx @@ -153,7 +153,7 @@ export interface IBoxProps extends IStyledProps { css?: React.CSSProperties; /** CSS `position` property */ - position?: 'absolute' | 'fixed' | 'relative' | 'static' | 'inherit'; + position?: 'absolute' | 'fixed' ...
11
diff --git a/contracts/ProxyERC20.sol b/contracts/ProxyERC20.sol @@ -67,7 +67,7 @@ contract ProxyERC20 is Proxy, IERC20 { /** * @dev Gets the balance of the specified address. - * @param owner The address to query the balance of. + * @param account The address to query the balance of. * @return An uint256 representing ...
3
diff --git a/packages/gluestick/src/renderer/middleware.js b/packages/gluestick/src/renderer/middleware.js @@ -124,8 +124,10 @@ const middleware: Middleware = async (req, res, { assets }) => { ); if (redirectLocation) { callHook(hooks.preRedirect, redirectLocation); + const status = + (redirectLocation.state && redirec...
11
diff --git a/extensions/projection/README.md b/extensions/projection/README.md @@ -20,9 +20,11 @@ projections per Asset is not currently handled by this extension. The exception default, which should be specified at the asset level, while those assets that use the defaults can remain unspecified. ## Examples + - [Examp...
1
diff --git a/docs/source/platform/schema-validation.md b/docs/source/platform/schema-validation.md @@ -26,37 +26,36 @@ Here's how it works: Engine's cloud service uses an algorithm to detect breaking changes in a schema diff. It follows the following rules to determine which potentially breaking change types should act...
4
diff --git a/frontend/lost/package.json b/frontend/lost/package.json }, "scripts": { "install:tools": "npm install --prefix src/components/pipeline -d", - "start": "bash src/frontendDev.sh && npm run install:tools && REACT_APP_PORT='8083' react-app-rewired start", + "start": "bash src/frontendDev.sh && npm run install:...
12
diff --git a/src/pages/Create/create-moreService.js b/src/pages/Create/create-moreService.js @@ -82,26 +82,25 @@ export default class Index extends PureComponent { handleBuild = () => { this.setState({ buildState: true }); - const { JavaMavenData, is_deploy } = this.state; if (JavaMavenData.length > 0) { - const team_n...
1
diff --git a/bin/super.js b/bin/super.js @@ -129,7 +129,7 @@ function createConstructor(version, name, enforcer) { // store the full set of enforcer data store.set(result, data); - data.defToInstanceMap.set(data.definition, result); + if (data.definition && typeof data.definition === 'object') data.defToInstanceMap.set...
1
diff --git a/src/commands/init.js b/src/commands/init.js @@ -17,6 +17,34 @@ class InitCommand extends Command { // Check logged in status await this.authenticate() + const siteId = this.site.get('siteId') + // const hasFlags = !isEmpty(flags) + let site + try { + site = await this.netlify.getSite({ siteId }) + } catch ...
9
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -34,6 +34,7 @@ import {PathFinder} from './npc-utils.js'; import {localPlayer, remotePlayers} from './players.js'; import loaders from './loaders.js'; import * as voices from './voices.js'; +import * as procgen from './procgen/procgen.js'; import {getHeight} f...
0
diff --git a/packages/insomnia-app/app/ui/css/constants/dimensions.less b/packages/insomnia-app/app/ui/css/constants/dimensions.less html { /* Font Size */ - --font-size-xxs: 0.5rem; - --font-size-xs: 0.625rem; - --font-size-sm: 0.75rem; - --font-size-md: 0.8125rem; - --font-size-lg: 0.9375rem; - --font-size-xl: 1.1875...
3
diff --git a/game.js b/game.js @@ -29,6 +29,7 @@ import * as metaverseModules from './metaverse-modules.js'; import loadoutManager from './loadout-manager.js'; // import soundManager from './sound-manager.js'; import {generateObjectUrlCard} from './card-generator.js'; +import * as sounds from './sounds.js'; // const {c...
0
diff --git a/login.js b/login.js @@ -574,7 +574,7 @@ class LoginManager extends EventTarget { } } - async uploadFile(file) { + async uploadFile(file, {description = ''} = {}) { if (loginToken) { const {name} = file; if (name) { @@ -607,7 +607,6 @@ class LoginManager extends EventTarget { } finally { notifications.remov...
0
diff --git a/src/components/staking/UndelegationModal.vue b/src/components/staking/UndelegationModal.vue submission-error-prefix="Undelegating failed" @close="clear" > + <TmFormGroup class="action-modal-form-group"> + <span class="form-message warning"> + Note: Undelegated tokens will become available for use after 21 ...
3
diff --git a/src/plots/gl3d/scene.js b/src/plots/gl3d/scene.js @@ -15,6 +15,7 @@ var createPlot = glPlot3d.createScene; var getContext = require('webgl-context'); var passiveSupported = require('has-passive-events'); +var isMobile = require('is-mobile')({ tablet: true }); var Registry = require('../../registry'); var L...
0
diff --git a/karma.conf.js b/karma.conf.js @@ -180,6 +180,7 @@ module.exports = (config) => { }; } else { options.concurrency = 1; + options.captureTimeout = 300000; options.reporters.push("BrowserStack"); options.customLaunchers = { "Chrome 26 on Windows 7": {
12
diff --git a/Specs/DataSources/EllipsoidGraphicsSpec.js b/Specs/DataSources/EllipsoidGraphicsSpec.js @@ -65,6 +65,11 @@ defineSuite([ var source = new EllipsoidGraphics(); source.material = new ColorMaterialProperty(); source.radii = new ConstantProperty(); + source.innerRadii = new ConstantProperty(); + source.minimum...
3
diff --git a/public/javascripts/SVLabel/src/SVLabel/onboarding/Onboarding.js b/public/javascripts/SVLabel/src/SVLabel/onboarding/Onboarding.js @@ -734,28 +734,28 @@ function Onboarding(svl, audioEffect, compass, form, handAnimation, mapService, // Ideally we need a for loop that goes through every element of the proper...
1
diff --git a/src/pages/index.hbs b/src/pages/index.hbs <div class="sprk-o-Stack sprk-o-Stack--medium sprk-o-Stack--split@s"> <div class="sprk-o-Stack__item"> - <a class="drizzle-b-Button" href="/gettingstarted/developers.html"> - Getting Started for Developers + <a class="drizzle-b-Button" href="/gettingstarted/html.ht...
3
diff --git a/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/analyses/analysis-form-models/merge-form-model.js b/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/analyses/analysis-form-models/merge-form-model.js @@ -143,13 +143,13 @@ module.exports = BaseAnalysisFormModel.ex...
11
diff --git a/test/versioned/hapi-latest/hapi-router.tap.js b/test/versioned/hapi-latest/hapi-router.tap.js @@ -189,14 +189,15 @@ test("Hapi router introspection", function(t) { server.route(route) server.start(function() { - request.post('http://localhost:8089/test/31337', + request.post( + 'http://localhost:8089/test/...
4
diff --git a/assets/js/hooks/useChecks.js b/assets/js/hooks/useChecks.js @@ -42,15 +42,13 @@ export function useChecks( checks ) { const [ complete, setComplete ] = useState( isSiteKitConnected ); const [ error, setError ] = useState( undefined ); useEffect( () => { - setComplete( false ); const runChecks = async () =>...
2
diff --git a/manager/src/backend/internal/ssl.js b/manager/src/backend/internal/ssl.js @@ -26,13 +26,14 @@ const internalSsl = { processExpiringHosts: () => { if (!internalSsl.interval_processing) { logger.info('Renewing SSL certs close to expiry...'); - return utils.exec('/usr/bin/certbot renew --webroot=/config/letse...
1
diff --git a/shared/js/ui/pages/options.es6.js b/shared/js/ui/pages/options.es6.js @@ -8,6 +8,8 @@ const WhitelistModel = require('./../models/whitelist.es6.js') const whitelistTemplate = require('./../templates/whitelist.es6.js') const BackgroundMessageModel = require('./../models/background-message.es6.js') const par...
4
diff --git a/src/constants/cookieNameKey.js b/src/constants/cookieNameKey.js @@ -13,4 +13,3 @@ governing permissions and limitations under the License. export const IDENTITY = "identity"; export const CONSENT = "consent"; export const CLUSTER = "cluster"; -export const MBOX = "mbox";
2
diff --git a/articles/support/matrix.md b/articles/support/matrix.md @@ -697,119 +697,102 @@ In this section covering SDKs and Libraries, we will use the following terms to <th>Community Support Only</th> </tr> <tr> - <td>[.NET WCF](/quickstart/backend/wcf-service)</td> <td><a href="/quickstart/backend/wcf-service">.NE...
2
diff --git a/lib/file.js b/lib/file.js @@ -54,7 +54,7 @@ var LINK_STYLE_REGEX = File.LINK_STYLE_REGEX = /\[(.+?)\]\(#([\w\-]+?)(:)(\d+?\. var CODE_BLOCK_REGEX = File.CODE_BLOCK_REGEX = /`{3}[\s\S]*?`{3}/gm; var INLINE_CODE_REGEX = File.INLINE_CODE_REGEX = /`[\s\S]*?`/g; var CODE_STYLE_END = "((:)(\\d+)?)?(.*)$"; -var C...
11
diff --git a/app/models/post.rb b/app/models/post.rb @@ -61,16 +61,75 @@ class Post < ActiveRecord::Base preference :formatting, :string, default: FORMATTING_SIMPLE ALLOWED_TAGS = %w( - a abbr acronym b blockquote br cite code dl dt em embed h1 h2 h3 h4 h5 h6 hr i - iframe img li object ol p param pre s small strike st...
11
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -6,6 +6,9 @@ The history of all changes to react-polymorph. vNext ===== +0.9.2 +===== + ### Features - Adds new `ScrollBar` component and integrates it into existing react-polymorph components. Refactors all snapshot tests to use enzyme for full DOM node rendering. [PR 129](h...
6
diff --git a/src/common/blockchain/interface-blockchain/blocks/Interface-Blockchain-Block.js b/src/common/blockchain/interface-blockchain/blocks/Interface-Blockchain-Block.js @@ -29,6 +29,11 @@ class InterfaceBlockchainBlock { this.height = (typeof height === "number" ? height : null); // index set by me + if (blockVal...
12
diff --git a/components/Article/Progress/index.js b/components/Article/Progress/index.js @@ -56,14 +56,10 @@ class Progress extends Component { } this.onScroll = () => { - const { article } = this.props - + this.saveProgress() + if (this.state.restore) { const y = window.pageYOffset - const downwards = this.lastY === u...
9
diff --git a/src/components/dashboard/Marketplace.web.js b/src/components/dashboard/Marketplace.web.js @@ -27,8 +27,10 @@ const MarketTab = props => { if (newtoken !== undefined && newtoken !== token) { token = newtoken userStorage.setProfileField('marketToken', newtoken) + if (token == null) { setLoginToken(newtoken) ...
0
diff --git a/src/layouts/EnterpriseLayout.js b/src/layouts/EnterpriseLayout.js @@ -282,8 +282,7 @@ class EnterpriseLayout extends PureComponent { if (!currentUser || !rainbondInfo || enterpriseList.length === 0) { return <Redirect to={`/user/login?${queryString}`} />; } - const fetchLogo = - rainbondUtil.fetchLogo(ente...
1
diff --git a/articles/support/matrix.md b/articles/support/matrix.md @@ -152,60 +152,6 @@ At this time, Auth0 only supports use of the Dashboard with desktop browsers. </tbody> </table> -#### Desktop Browsers - -<table class="table"> - <thead> - <tr> - <th width="80%">Browser</th> - <th width="20%">Level of Support</td...
2
diff --git a/token-metadata/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/metadata.json b/token-metadata/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/metadata.json "symbol": "MXX", "address": "0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/lib/nodes/addon/components/driver-vmwarevsphere/component.js b/lib/nodes/addon/components/driver-vmwarevsphere/component.js @@ -149,7 +149,6 @@ export default Component.extend(NodeDriver, { let config = get(this, 'globalStore').createRecord({ type: CONFIG, - password: '', cpuCount: 2, memorySize: 2048, dis...
2
diff --git a/semcore/widget-empty/src/WidgetEmpty.js b/semcore/widget-empty/src/WidgetEmpty.js @@ -10,7 +10,7 @@ const version = preval` `; export const getIconPath = (name) => { - return `http://static.semrush.com/ui-kit/widget-empty/${version}/${name}.svg`; + return `https://static.semrush.com/ui-kit/widget-empty/${v...
13
diff --git a/src/service/alert.service.ts b/src/service/alert.service.ts @@ -40,7 +40,7 @@ export class AlertService { private alerts: Alert[]; private timeout: number; - constructor(private sanitizer: Sanitizer, private toast?: boolean, private translateService?: TranslateService) { + constructor(private sanitizer: Sa...
7
diff --git a/build.gradle b/build.gradle @@ -153,17 +153,19 @@ distributions { from jar from runner from modules - from javadoc + from(javadoc) { + into 'docs/java' + } } } } assemble.dependsOn(modules, runner) distZip { - dependsOn copyDependencies + dependsOn clean, copyDependencies } distTar { - dependsOn copyDepend...
7
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,15 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.29.1] -- 2017-07-25 + +### Fixed +- Fix axis line rendering when `showticklabels` is false + (bug introduced in 1.29.0) [#1910] +- Fi...
3
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml name: End-to-end tests -on: [push] +on: [push, pull_request] jobs: tests: - runs-on: windows-latest + runs-on: ubuntu-20.04 strategy: matrix: adapter: ['vue'] - browser: ['chrome', 'edge', 'firefox'] + browser: ['chrome', 'firefox'] steps: - name: C...
8
diff --git a/package.json b/package.json "hot-shots": "^6.3.0", "klasa": "github:dirigeants/klasa#master", "klasa-dashboard-hooks": "github:PenguBot/klasa-dashboard-hooks", - "klasa-member-gateway": "github:dirigeants/klasa-member-gateway", + "klasa-member-gateway": "github:MrJacz/klasa-member-gateway", "kurasuta": "^0...
4
diff --git a/ui/component/claimMenuList/view.jsx b/ui/component/claimMenuList/view.jsx @@ -271,7 +271,7 @@ function ClaimMenuList(props: Props) { </> )} - {channelUri && !claimIsMine && !isMyCollection ? !incognito && ( + {(!claimIsMine || channelIsBlocked) && channelUri && !isMyCollection ? !incognito && ( <> <MenuIte...
11
diff --git a/lib/elastic_model/acts_as_elastic_model.rb b/lib/elastic_model/acts_as_elastic_model.rb @@ -76,8 +76,10 @@ module ActsAsElasticModel scope = scope.where(id: filter_ids) end if indexed_before = options.delete(:indexed_before) + if column_names.include?( "last_indexed_at" ) scope = scope.where("last_indexed_...
1
diff --git a/snippets/social/docomo/3.md b/snippets/social/docomo/3.md ### Set up app in Docomo -Set up an app in the [docomo Developer Portal](https://dev.smt.docomo.ne.jp/?p=login) using Docomo's [Beginner's Guide](https://dev.smt.docomo.ne.jp/?p=about.api). +Set up an app following the steps on the [dAccount Connect...
3
diff --git a/src/structs/db/Feed.js b/src/structs/db/Feed.js @@ -380,7 +380,7 @@ class Feed extends FilterBase { if (this.title.length > 200) { this.title = this.title.slice(0, 200) + '...' } - const allArticlesHaveDates = articleList.reduce((acc, article) => acc && (!!article.pubdate), true) + const allArticlesHaveDat...
14
diff --git a/js/webcomponents/bisweb_treeviewer.js b/js/webcomponents/bisweb_treeviewer.js @@ -716,10 +716,10 @@ class TreeViewer extends HTMLElement { loadNetworkFromFile() { let existingNetwork = this.network; let hiddenFileButton = webutil.createhiddeninputfile('.json, .JSON', (file) => { - let reader = new FileRead...
1
diff --git a/app/shared/containers/Global/Account/Fragment/Ram/Value.js b/app/shared/containers/Global/Account/Fragment/Ram/Value.js @@ -47,8 +47,7 @@ class GlobalAccountFragmentRamValue extends PureComponent<Props> { const mapStateToProps = (state, ownProps) => { const account = ownProps.account.replace('.', '\\.'); c...
1
diff --git a/includes/Discovery.php b/includes/Discovery.php @@ -41,15 +41,7 @@ class Discovery { * @return void */ public function init() { - add_action( - 'web_stories_story_head', - static function () { - // Theme support for title-tag is implied for stories. See _wp_render_title_tag(). - echo '<title>' . esc_html( ...
14
diff --git a/_config.yml b/_config.yml @@ -160,9 +160,9 @@ sass: # AlgoliaSearch-Jekyll: https://github.com/algolia/algoliasearch-jekyll/ algolia: - application_id: 'ITI5JHZJM9' + application_id: 'QHKS75PWSL' index_name: 'diybiosphere' - search_only_api_key: 'b427318cf6d881e5d3ffd84adf39219e' + search_only_api_key: '67...
3
diff --git a/utility_scripts/configureCMK.py b/utility_scripts/configureCMK.py @@ -52,8 +52,11 @@ cmk_roles_logical_ids = [ 'S3AccessRole', 'FirehoseESS3Role', 'AdminRole', - 'ESProxyLambdaRole', - 'FulfillmentLambdaRole' + 'ExportRole', + 'ImportRole', + 'ApiGatewayRole', + 'ESCognitoRole', + 'KibanaRole', ] cmk_roles...
3
diff --git a/nightwatch.json b/nightwatch.json "start_process": true, "server_path": "./node_modules/.bin/chromedriver", "port": 9515, - "log_path": false + "log_path": "tests/browser/output" }, "desiredCapabilities": { "browserName": "chrome"
0
diff --git a/app/native/src/types/Navigation.js b/app/native/src/types/Navigation.js // @flow +type NavigationStateParameters = Object; + +/** + * @see https://reactnavigation.org/docs/navigators/navigation-prop + */ export type Navigation = { - navigate: (screen: string, parameters?: Object) => void, + navigate: (rout...
7
diff --git a/react/src/components/footer/SprkFooter.js b/react/src/components/footer/SprkFooter.js @@ -340,7 +340,7 @@ SprkFooter.propTypes = { altText: PropTypes.string.isRequired, /** * Expects a space separated string of - * classes to be added to the component. + * classes to be added to the award image. */ addClas...
7
diff --git a/src/clipboard.js b/src/clipboard.js @@ -20,7 +20,7 @@ export function onPaste(e, saver, invalidImageSelector, fileTypes, sanitize) { function onPasteBlob(event, file, saver, fileTypes) { event.preventDefault() if (fileTypes.indexOf(file.type) >= 0) { - saver({ data: file, type: file.type, id: String(new Da...
2
diff --git a/packages/cx/src/widgets/overlay/Window.d.ts b/packages/cx/src/widgets/overlay/Window.d.ts -import * as Cx from '../../core'; -import { OverlayProps } from './Overlay'; +import * as Cx from "../../core"; +import { OverlayProps } from "./Overlay"; interface WindowProps extends OverlayProps { - /** Text to be...
0
diff --git a/JSONSchema/st-filler-schema.json b/JSONSchema/st-filler-schema.json { "$ref": "#/definitions/ConfusedHexType" } ] }, + "PrefixedHexOrInteger": { + "anyOf": [ + { "$ref": "#/definitions/IntegerString" }, + { "$ref": "#/definitions/HexData" } + ] + }, "PreStateAccount": { "type": "object", "additionalpropert...
11
diff --git a/common/lib/client/auth.ts b/common/lib/client/auth.ts @@ -443,11 +443,11 @@ class Auth { } else if(authOptions.authUrl) { Logger.logAction(Logger.LOG_MINOR, 'Auth.requestToken()', 'using token auth with authUrl'); tokenRequestCallback = function(params: Record<string, unknown>, cb: Function) { - var authHe...
14
diff --git a/bin/definition/index.js b/bin/definition/index.js @@ -104,7 +104,7 @@ function normalize(data) { // check if enum matches } else if (validator.enum && (message = checkEnum(data))) { message.length === 1 - ? exception('Value must equal: ' + message[0] + '. Received: ' + util.smart(value)) + ? exception('Val...
7
diff --git a/src/js/modules/Download/defaults/downloaders/pdf.js b/src/js/modules/Download/defaults/downloaders/pdf.js @@ -98,7 +98,7 @@ export default function(list, options, setFileContents){ } if(title){ - autoTableParams.addPageContent = function(data) { + autoTableParams.didDrawPage = function(data) { doc.text(tit...
14
diff --git a/package.json b/package.json "bootstrap-colorpicker": "2.5.0", "browserify": "13.0.0", "browserify-shim": "3.8.12", - "camshaft-reference": "0.32.0", + "camshaft-reference": "0.33.0", "carto": "cartodb/carto#master", "cartodb-deep-insights.js": "cartodb/deep-insights.js#master", "cartodb-pecan": "0.2.x",
3
diff --git a/src/selectors/index.js b/src/selectors/index.js @@ -25,9 +25,6 @@ export const selectEventFilters = (state: State): EventFiltersState => export const selectSavedEvents = (state: State): SavedEvents => state.savedEvents; -// The selectors below are temporary so that we can memoize across -// multiple compon...
2
diff --git a/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs b/OurUmbraco/Documentation/Busineslogic/GithubSourcePull/ZipDownloader.cs @@ -253,7 +253,7 @@ namespace OurUmbraco.Documentation.Busineslogic.GithubSourcePull return 5; case "add-ons": return 6; - case "umbraco-as-a-service": + case "u...
3
diff --git a/src/components/common/TmSessionExplore.vue b/src/components/common/TmSessionExplore.vue </div> <div class="tm-li-session-text"> <div class="tm-li-session-title"> - <span>{{ shortenAddress(account.address) }}</span> + <span>{{ account.address | formatBech32(false, 12) }}</span> <p class="tm-li-session-subti...
14
diff --git a/assets/js/modules/analytics-4/components/dashboard/ActivationBanner/index.test.js b/assets/js/modules/analytics-4/components/dashboard/ActivationBanner/index.test.js @@ -27,7 +27,6 @@ import { unsubscribeFromAll, } from '../../../../../../../tests/js/test-utils'; import ActivationBanner from './index'; -im...
2
diff --git a/src/views/splash/splash.jsx b/src/views/splash/splash.jsx @@ -129,7 +129,7 @@ class Splash extends React.Component { useCsrf: true, json: {cue: cue, value: false} }, err => { - if (!err) this.props.dispatch(sessionActions.refreshSession()); + if (!err) this.props.refreshSession(); }); } shouldShowWelcome (...
4
diff --git a/www/tablet/js/widget_pagebutton.js b/www/tablet/js/widget_pagebutton.js @@ -18,7 +18,9 @@ var Modul_pagebutton = function () { function loadPage(elem) { console.time('fetch content'); var sel = elem.data('load'); - var hashUrl = elem.data('url').replace('#', ''); + var url = elem.data('url'); + if (ftui.is...
1
diff --git a/src/containers/FlightDirector/SoftwarePanels/style.scss b/src/containers/FlightDirector/SoftwarePanels/style.scss left: 0; border-right: solid 1px #eee; transform: translateX(-100%); - background-color: white; + background-color: rgba(0, 0, 0, 0.9); transition: transform 0.5s ease; z-index: 3; }
1
diff --git a/.github/scripts/validateActionsAndWorkflows.sh b/.github/scripts/validateActionsAndWorkflows.sh #!/bin/bash # -# 1) Lints the yaml style -# 2) Validates the Github Actions and workflows using the json schemas provided by https://www.schemastore.org/json/ +# Validates the Github Actions and workflows using ...
7
diff --git a/src/components/TouchableWithoutFocus.js b/src/components/TouchableWithoutFocus.js @@ -26,10 +26,10 @@ const defaultProps = { class TouchableWithoutFocus extends React.Component { constructor(props) { super(props); - this.onPress = this.onPress.bind(this); + this.pressAndBlur = this.onPress.bind(this); } - ...
10
diff --git a/generators/cleanup.js b/generators/cleanup.js @@ -99,6 +99,10 @@ function cleanupOldFiles(generator) { if (generator.isJhipsterVersionLessThan('6.6.1') && generator.configOptions && generator.configOptions.clientFramework === 'angularX') { generator.removeFile(`${ANGULAR_DIR}core/language/language.helper.t...
2
diff --git a/src/lib/constructor.js b/src/lib/constructor.js @@ -500,6 +500,11 @@ export default { ['preview', 'print'] ]; + /** RTL - buttons */ + if (options.rtl) { + options.buttonList = options.buttonList.reverse(); + } + /** --- Define icons --- */ // custom icons options.icons = (!options.icons || typeof options....
3
diff --git a/styles/es-component-styles.scss b/styles/es-component-styles.scss --es-admin-gray-900: #1E1E1E; --es-admin-gray-950: #111111; - --es-admin-red-500: #F44336; + --es-admin-red-500: #CF2E2E; --es-admin-on-red-500: #FFFFFF; - --es-admin-yellow-500: #FFEB3B; + --es-admin-yellow-500: #FF6900; --es-admin-on-yello...
7
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-pagination/sprk-pagination.component.spec.ts b/angular/projects/spark-angular/src/lib/components/sprk-pagination/sprk-pagination.component.spec.ts import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { RouterTestingModule }...
3
diff --git a/src/server/util.js b/src/server/util.js /* @flow */ -export const isJS = (file: string): boolean => /\.js($|\?)/.test(file) +export const isJS = (file: string): boolean => /\.js(\?[^.]+)?$/.test(file) -export const isCSS = (file: string): boolean => /\.css($|\?)/.test(file) +export const isCSS = (file: str...
7
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -42,7 +42,7 @@ jobs: if [[ $LOCAL_VERSION != $NPM_VERSION ]]; then echo "The versions are different..." echo "$LOCAL_VERSION" - if [[ "'beta' in $LOCAL_VERSION" ]]; then + if [[ 'beta' in $LOCAL_VERSION ]]; then echo "It's a beta package..." else echo "It's no...
2
diff --git a/packages/shared/styles/components/SfHeading.scss b/packages/shared/styles/components/SfHeading.scss @import '../variables'; +$heading--border-color: #f1f2f4 !default; +$heading--underline-subtitle-color: #a3a5ad !default; $heading__subtitle-font-family: $body-font-family-primary !default; $heading__subtitl...
1
diff --git a/articles/clients/client-grant-types.md b/articles/clients/client-grant-types.md @@ -63,7 +63,13 @@ Depending on whether a newly-created Client is **public** or **confidential**, t ### Public Clients -Public Clients, indicated by the `token_endpoint_auth_method` flag set to `none`, are those created in the ...
0
diff --git a/articles/libraries/auth0js/index.md b/articles/libraries/auth0js/index.md @@ -9,6 +9,10 @@ url: /libraries/auth0js Auth0.js is a client-side library for [Auth0](http://auth0.com), for use in your web apps. It allows you to trigger the authentication process and parse the [JSON Web Token](http://openid.net/...
0
diff --git a/vis/js/streamgraph.js b/vis/js/streamgraph.js @@ -508,6 +508,19 @@ streamgraph.stream_mouseout = function() { d3.selectAll(".stream").transition() .duration(100) .attr('class', 'stream') + } else { + d3.selectAll(".stream").transition() + .duration(100) + .attr("class", function (d, j) { + let stream_class...
1
diff --git a/components/social-media.js b/components/social-media.js @@ -21,12 +21,10 @@ function SocialMedia() { </a> </Link> - <Link href='https://twitter.com/adressedatagouv?lang=fr'> - <a> + <a href='https://twitter.com/adressedatagouv?lang=fr'> <Image src='/images/logos/twitter.svg' height={88} width={88} alt='Twi...
2
diff --git a/packages/lib-classifier/src/components/Classifier/components/SubjectViewer/components/FlipbookViewer/components/FlipbookControls.js b/packages/lib-classifier/src/components/Classifier/components/SubjectViewer/components/FlipbookViewer/components/FlipbookControls.js @@ -123,7 +123,7 @@ const FlipbookControl...
12
diff --git a/src/lib/storage.js b/src/lib/storage.js @@ -9,13 +9,7 @@ import defaultProject from './default-project'; class Storage extends ScratchStorage { constructor () { super(); - const defaultProjectAssets = defaultProject(this.translator); - defaultProjectAssets.forEach(asset => this.cache( - this.AssetType[asse...
4
diff --git a/test/p2p.jenkinsfile b/test/p2p.jenkinsfile @@ -27,7 +27,7 @@ pipeline { withEnv(['JENKINS_NODE_COOKIE=dontkill']) { sh "python ${env.startServerScript} --p2p-server-path ${env.p2pServerPath} \ --owner open-webrtc-toolkit --repo owt-client-javascript --commit-id ${GIT_COMMIT} \ - --github-script ${env.serv...
4
diff --git a/src/assets/js/science/plotly-1.57.1.js b/src/assets/js/science/plotly-1.57.1.js }, r.revokeObjectURL = function (t) { return i.revokeObjectURL(t) }, r.createBlob = function (t, e) { - if ("svg" === e) return new window.Blob([t], { + if ("svg" === e) { + let blob = new window.Blob([t], { type: "image/svg+xm...
14
diff --git a/examples/cmdline/duk_cmdline.c b/examples/cmdline/duk_cmdline.c @@ -245,7 +245,7 @@ static duk_ret_t wrapped_compile_execute(duk_context *ctx, void *udata) { duk_load_function(ctx); } else { /* Source code. */ - comp_flags = 0; + comp_flags = DUK_COMPILE_SHEBANG; duk_compile_lstring_filename(ctx, comp_flag...
11
diff --git a/src/mode/cam/driver.js b/src/mode/cam/driver.js let tops = slice.shadow.clone(true); let offset = POLY.expand(tops, diameter / 2, slice.z); + if (!inside) + POLY.offset(shell, diameter/2, { outs: offset, flat: true, z: slice.z }); + // when pocket only, drop first outer poly // if it matches the shell and ...
2
diff --git a/admin-base/materialize/custom/_debugger.scss b/admin-base/materialize/custom/_debugger.scss position: fixed; bottom: 60px; left: 0; - // .toggle-debugger { - // width: 2rem; - // height: 40px; - // position: absolute; - // border: 1px solid color("blue-grey", "lighten-4"); - // border-left: 0; - // backgro...
7
diff --git a/routes/base.js b/routes/base.js @@ -10,10 +10,16 @@ module.exports = (options) => { options.res.send(reply); } else { + try { options.getHTML((html) => { redis.set(options.req.url, html); options.res.send(html); }); } + catch (e) { + redis.set(options.req.url, ''); + options.res.send(''); + } + } }); }; \ ...
9