code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/includes/resources.ejs b/includes/resources.ejs <meta name="theme-color" content="#282828"> <meta name="apple-mobile-web-app-title" content="SkyCrypt"> <meta name="apple-mobile-web-app-capable" content="yes"> - <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="apple-mobile-w...
11
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.9.1 (unreleased) -### Breaking - -### Feature - ### Bugfix + - Fix bug related to closing the More menu of Toolbar @iFlameing - Fix cosmetic issue, add links were not properly generated in Contents view not under the root. This didn't impact functionality as the content was...
6
diff --git a/src/og/math/Line3.js b/src/og/math/Line3.js @@ -8,6 +8,10 @@ const Line3 = function (p0, p1) { this.p1 = p1 || new Vec3(); }; +Line3.prototype.getMagnitude = function () { + return this.p0.distance(this.p1); +}; + Line3.prototype.getSphereIntersection = function (sphere) { var p0 = this.p0, p1 = this.p1; @...
0
diff --git a/factory-ai-vision/EdgeSolution/modules/WebModule/ui/src/util/GetIDFromUrl.ts b/factory-ai-vision/EdgeSolution/modules/WebModule/ui/src/util/GetIDFromUrl.ts -export const getIdFromUrl = (url: string): number => parseInt(url.split("/")[5], 10) ; \ No newline at end of file +export const getIdFromUrl = (url: ...
9
diff --git a/src/components/Hoverable/index.js b/src/components/Hoverable/index.js @@ -17,15 +17,15 @@ class Hoverable extends Component { this.wrapperView = null; - this.handleOutsideClick = this.handleOutsideClick.bind(this); + this.resetHoverStateOnOutsideClick = this.resetHoverStateOnOutsideClick.bind(this); } comp...
10
diff --git a/package.json b/package.json "@carto/zera": "1.0.6", "cartocolor": "4.0.0", "cartodb-pecan": "0.2.x", - "@carto/carto.js": "CartoDB/carto.js#v4.0.4", "clipboard": "1.6.1", "codemirror": "5.14.2", "d3-interpolate": "^1.1.6", "d3-queue": "^3.0.7", "fastclick": "^1.0.6", "html-webpack-plugin": "^2.30.1", + "in...
10
diff --git a/framer/Layer.coffee b/framer/Layer.coffee @@ -47,7 +47,7 @@ layerProperty = (obj, name, cssProperty, fallback, validator, transformer, optio @_properties[name] = value - mainElement = @_element if includeMainElement || !targetElement + mainElement = @_element if includeMainElement or not targetElement subE...
14
diff --git a/src/components/core/core.less b/src/components/core/core.less align-items: flex-start; transition-property: transform, height; } + +/* 3D Effects */ +.swiper-container-3d { + perspective: 1200px; + .swiper-wrapper, .swiper-slide, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-t...
0
diff --git a/lib/core/engine.js b/lib/core/engine.js @@ -169,7 +169,6 @@ class Engine { this.registerModule('profiler'); this.registerModule('deploytracker'); this.registerModule('specialconfigs'); - this.registerModule('specialconfigs'); this.registerModule('console_listener', {ipc: self.ipc}); this.registerModule('co...
2
diff --git a/components/Vote/VoteCounter.js b/components/Vote/VoteCounter.js @@ -15,18 +15,9 @@ import { } from '@project-r/styleguide' import { gql } from '@apollo/client' -import { swissNumbers } from '../../lib/utils/format' +import { countFormat } from '../../lib/utils/format' import VoteCountdown from './VoteCount...
4
diff --git a/core/server/api/v2/utils/serializers/output/authentication.js b/core/server/api/v2/utils/serializers/output/authentication.js -const i18n = require('../../../../../../shared/i18n'); +const tpl = require('@tryghost/tpl'); const mapper = require('./utils/mapper'); const debug = require('@tryghost/debug')('ap...
14
diff --git a/docs/faq/HowToClear.md b/docs/faq/HowToClear.md Excellent question. You have several options: -### A) You can use [the `plugin()` API](#/api/reducer/plugin) to teach the `redux-form` reducer to respond to the action dispatched when your submission succeeds. +### A) You can use [the `plugin()` API](../api/R...
1
diff --git a/app/src/main/js/reducers/rants.js b/app/src/main/js/reducers/rants.js @@ -31,6 +31,9 @@ function breakDownRants(prevRants, newRants) { let col0Height = 0; let col1Height = 0; + // This is the height of the user profile on top of the rant card + const userProfileHeight = 75; + // Get the width of the hidden...
7
diff --git a/token-metadata/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/metadata.json b/token-metadata/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/metadata.json "symbol": "BIKI", "address": "0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/lib/gundb/UserStorageClass.js b/src/lib/gundb/UserStorageClass.js @@ -439,7 +439,7 @@ export class UserStorage { //hack to get gun working. these seems to preload data gun needs to login //otherwise it get stuck on a clean incognito const usernamePromise = new Promise((res, rej) => { - this.gun.get('~@...
0
diff --git a/swarm-production/docker-stack.yml b/swarm-production/docker-stack.yml @@ -6,7 +6,7 @@ services: s3-data: image: scality/s3server ports: - - "9990" + - "9991" networks: - backend environment: @@ -23,7 +23,7 @@ services: s3-metadata: image: scality/s3server ports: - - "9991" + - "9990" networks: - backend en...
4
diff --git a/src/effects/macros.js b/src/effects/macros.js @@ -69,7 +69,7 @@ export async function loadMacroFile(type, fileName, forceLoad = false) { const response = await fetch(url, { method: "GET" }); data = await response.text(); } else if (fileExists && !embedMacros) { - data = `// Execute DDB Importer dynamic mac...
7
diff --git a/Source/Core/Check.js b/Source/Core/Check.js @@ -25,11 +25,11 @@ define([ Check.numeric = {}; function getUndefinedErrorMessage(name) { - return name + ' was required but undefined.'; + return name + ' is required, actual value was undefined'; } function getFailedTypeErrorMessage(actual, expected, name) { -...
7
diff --git a/index.html b/index.html <button class="btn btn-dark" onclick="kapfind()">FInd</button><p>&nbsp;</p> <p style="font-family:mathfont" id="kapans"></p><br> </div> -<div class="collapse" id="abundants"> - <h1 style="color: white;font-family:mathfont">Abundant Number</h2><p>&nbsp;</p> - <input style="color: whi...
7
diff --git a/test/modules/core/effects/post-process-effect.spec.js b/test/modules/core/effects/post-process-effect.spec.js import test from 'tape-catch'; import {gl} from '@deck.gl/test-utils'; +import {Framebuffer} from '@luma.gl/core'; import PostProcessEffect from '@deck.gl/core/effects/post-process-effect'; const f...
7
diff --git a/workflow/views.py b/workflow/views.py @@ -2633,12 +2633,20 @@ def import_service(service_id=1, deserialize=True): def objectives_list(request): if (request.method == 'POST'): data = request.POST - objective = StrategicObjective(name=data.get('objective_name'), description=data.get('description')) + activit...
3
diff --git a/articles/multifactor-authentication/developer/sns-configuration.md b/articles/multifactor-authentication/developer/sns-configuration.md @@ -9,7 +9,15 @@ To do this, go to the [Multifactor Auth](${manage_url}/#/guardian) section of th ![Push Notifications](/media/articles/mfa/push-notification-config.png) -...
0
diff --git a/docs/_app.js b/docs/_app.js @@ -5,7 +5,7 @@ import * as Rebass from 'rebass' import sortBy from 'lodash.sortby' import { ScopeProvider } from '@compositor/x0/components' import Layout from './_layout' -import { LiveEditor, Logo } from './_ui' +import { LiveEditor } from './_ui' const scope = { ...createSco...
3
diff --git a/package.json b/package.json "style-loader": "^0.13.1", "webpack": "~1.12.14", "webpack-stream": "~3.1.0", - "wiredep": "~3.0.0" + "wiredep": "~3.0.0", + "webpack-dev-server": "^1.16.2" }, "eslintConfig": { "env": { "react-sortable-hoc": "^0.1.1", "threads": "^0.7.2", "transform-loader": "^0.2.3", - "url-jo...
2
diff --git a/source/Overture/drag-drop/DragController.js b/source/Overture/drag-drop/DragController.js @@ -181,7 +181,16 @@ const DragController = new Obj({ event - {Event} */ handleEvent: function ( event ) { - this.fire( event.type, event ); + var type; + try { + // Firefox sometimes throws a "permission denied" erro...
8
diff --git a/pom.xml b/pom.xml <inceptionYear>2014</inceptionYear> <properties> <!-- the server version history is a comma separated list of all versions INCLUDING the actual version. New to old (e.g. 2.1.0,2.0.0,1.9.9,1.9.7) --> - <openRobertaServer.history>3.8.8,3.8.7,3.8.6,3.8.5,3.8.4,3.8.3,3.8.2,3.8.1,3.8.0,3.7.1,3...
6
diff --git a/.travis.yml b/.travis.yml @@ -19,8 +19,12 @@ install: - ls -alrt ~/.ssh - chmod 600 ~/.ssh/skey - ls -lrt deploy +- ls -lrt web/clui/public +- cat web/clui/public/test_status - cat autocheck.sh - bash ./autocheck.sh queue $TEST_IP script: +- sudo chown cland:cland cloudland +- sudo chown travis:travis auto...
12
diff --git a/rule-server/src/static/archives.json b/rule-server/src/static/archives.json "name": "Latest Deployment", "path": "/archives/latest" }, + { + "id": "11January2023", + "name": "11 January 2023 Deployment", + "version": "3.1.42", + "path": "/archives/2022.01.11" + }, { "id": "08November2022", "name": "08 Nove...
3
diff --git a/src/components/listing-create.js b/src/components/listing-create.js @@ -340,7 +340,7 @@ class ListingCreate extends Component { <div className="step-container"> <div className="row"> {step === this.STEP.PICK_SCHEMA && ( - <div className="col-md-5 pick-schema"> + <div className="col-md-6 col-lg-5 pick-schem...
7
diff --git a/test/components/DayPickerKeyboardShortcuts_spec.jsx b/test/components/DayPickerKeyboardShortcuts_spec.jsx @@ -12,6 +12,34 @@ import DayPickerKeyboardShortcuts from '../../src/components/DayPickerKeyboardSh const event = { preventDefault: sinon.stub(), stopPropagation: sinon.stub() }; describe('DayPickerKey...
5
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md - Please make sure the below checklist is followed for Pull Requests. -- [ ] [Travis tests](https://travis-ci.org/jhipster/jhipster-vuejs/pull_requests) are green +- [ ] [Azure tests](https://dev.azure.com/jhipster/jhipster-vuejs/_build) a...
14
diff --git a/assets/js/modules/tagmanager/setup.js b/assets/js/modules/tagmanager/setup.js @@ -241,7 +241,7 @@ class TagmanagerSetup extends Component { if ( this._isMounted ) { this.setState( { isLoading: false, - errorCode: true, + errorCode: err.code, errorMsg: err.message } ); }
12
diff --git a/tests/unit/specs/store/json/validators.js b/tests/unit/specs/store/json/validators.js @@ -92,7 +92,7 @@ export default [ max_rate: "0.500000000000000000", min_self_delegation: "1", moniker: "herr_schmidt_revoked", - operator_address: "cosmosvaladdr15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgurrg7n", + operator_addres...
1
diff --git a/package.json b/package.json "test:ava": "nyc --reporter=lcov ava --verbose && nyc report", "test:lint": "eslint --fix \"{src,scripts}/**/*.js\"", "test:prettier": "prettier --write --loglevel warn \"src/**/*.js\" \"*.{js,md,yml,json}\"", - "test:deps": "dependency-check ./package.json --entry \"src/**/!(*....
2
diff --git a/protocols/index/test/Index-unit.js b/protocols/index/test/Index-unit.js @@ -149,7 +149,7 @@ contract('Index Unit Tests', async accounts => { trx = index.setEntry(aliceAddress, 5000, aliceLocator, { from: owner, }) - await reverted(trx, 'USER_HAS_INTENT') + await reverted(trx, 'USER_HAS_ENTRY') let length =...
3
diff --git a/lib/assets/javascripts/dashboard/data/user-tables-model.js b/lib/assets/javascripts/dashboard/data/user-tables-model.js @@ -37,7 +37,7 @@ module.exports = Backbone.Model.extend({ page: 1, type: '', exclude_shared: true, - per_page: 10, + per_page: null, tags: '', shared: 'no', only_liked: false,
2
diff --git a/activities/Constellation.activity/js/activity.js b/activities/Constellation.activity/js/activity.js @@ -45,6 +45,19 @@ define(["sugar-web/activity/activity","sugar-web/env", "worldpalette", "viewpale }); + //Check if there is internet connection + function checkInternetConnection() { + var isOnLine = navig...
9
diff --git a/packages/react-renderer-demo/src/editor-demo/common/example-common.js b/packages/react-renderer-demo/src/editor-demo/common/example-common.js @@ -6,6 +6,8 @@ import FormRenderer, { componentTypes } from '@data-driven-forms/react-form-rend import { formFieldsMapper, layoutMapper } from '@data-driven-forms/m...
14
diff --git a/src/commands/init.js b/src/commands/init.js @@ -190,7 +190,20 @@ git remote add origin https://github.com/YourUserName/RepoName.git } else { switch (repo.provider) { case 'github': { + try { await configGithub(this, siteData, repo) + } catch (e) { + this.warn(`Github error: ${e.status}`) + if (e.code === 4...
9
diff --git a/resource/search/mappings.json b/resource/search/mappings.json "nGram" ] }, + "japanese": { + "tokenizer": "kuromoji_tokenizer", + "char_filter" : ["icu_normalizer"] + }, "english": { "tokenizer": "ngram_tokenizer", "filter": [ }, "path_ja": { "type": "text", - "analyzer": "kuromoji" + "analyzer": "japanese...
4
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -946,8 +946,7 @@ InteractiveVideo.prototype.toggleBookmarksChooser = function (show = false, firs } } - // Add classes if changing visibility - this.controls.$bookmarksChooser.toggleClass('h5p-transitioning', show || !show); + this.cont...
2
diff --git a/src/backends/github/API.js b/src/backends/github/API.js import LocalForage from "Lib/LocalForage"; import { Base64 } from "js-base64"; -import { uniq, initial, last, get, find } from "lodash"; +import { uniq, initial, last, get, find, hasIn } from "lodash"; import { filterPromises, resolvePromiseProperties...
1
diff --git a/protocols/index/contracts/Index.sol b/protocols/index/contracts/Index.sol @@ -40,7 +40,6 @@ contract Index is Ownable { /** * @notice Locator for a Delegate * @dev data is arbitrary e.g. may include an address - * * @param user address * @param score uint256 * @param data bytes32
2
diff --git a/js/background.js b/js/background.js @@ -215,7 +215,6 @@ chrome.webRequest.onBeforeRequest.addListener( if(!tabs[e.tabId]){ tabs[e.tabId] = {'trackers': {}, "total": 0, 'url': e.url} - } if(!settings.getSetting('extensionIsEnabled')){ @@ -242,6 +241,8 @@ chrome.webRequest.onBeforeRequest.addListener( tabs[e...
2
diff --git a/app/init.php b/app/init.php @@ -44,6 +44,7 @@ use Utopia\Database\Database; use Utopia\Database\Validator\Structure; use Utopia\Database\Validator\Authorization; use Utopia\Validator\Range; +use Utopia\Validator\WhiteList; use Swoole\Database\PDOConfig; use Swoole\Database\PDOPool; use Swoole\Database\Redi...
4
diff --git a/lib/modules/storage/index.js b/lib/modules/storage/index.js @@ -6,16 +6,10 @@ const SwarmModule = require('../swarm'); class Storage { constructor(embark, options){ const self = this; - this._embark = embark; - this._options = options; - this._storageConfig = options.storageConfig; - this._webServerConfig ...
2
diff --git a/src/components/accounts/SetupImplicit.js b/src/components/accounts/SetupImplicit.js @@ -81,7 +81,7 @@ class SetupImplicit extends Component { const { dispatch, accountId, implicitAccountId, recoveryMethod } = this.props this.setState({ creatingAccount: true }) await dispatch(createAccountFromImplicit(accou...
13
diff --git a/api/src/utils/email/context.js b/api/src/utils/email/context.js @@ -16,15 +16,15 @@ export async function dailyContextGlobal() { } export async function weeklyContextGlobal() { - return { - counts: { - rss: await RSS.find({}).countDocuments(), - users: await User.find({}).countDocuments(), - podcast: await...
4
diff --git a/src/Launch/index.js b/src/Launch/index.js import { initUtils } from '../Utils' import { initProfile } from 'metro-sdk' import { initMetrics } from 'metro-sdk' -import { initSdkPlugin } from 'metro-sdk' +import { initLightningSdkPlugin } from 'metro-sdk' import { initSettings } from '../Settings' import { i...
10
diff --git a/tests/e2e/plugins/site-verification-api-mock.php b/tests/e2e/plugins/site-verification-api-mock.php @@ -42,7 +42,7 @@ add_action( 'rest_api_init', function () { register_rest_route( REST_Routes::REST_ROOT, - 'modules/site-verification/data/siteverification', + 'modules/site-verification/data/verification',...
3
diff --git a/Sources/web3swift/Operations/WriteOperation.swift b/Sources/web3swift/Operations/WriteOperation.swift @@ -30,18 +30,4 @@ public class WriteOperation: ReadOperation { // MARK: Sending Data flow return try await web3.eth.send(transaction) } - - // FIXME: Rewrite this to CodableTransaction - func nonce(for po...
2
diff --git a/docs/sphinx_greenlight_instructions.md b/docs/sphinx_greenlight_instructions.md @@ -41,3 +41,6 @@ Here's how you can connect your sphinx chat app to your raspberry pi at home. 4. Go to the advanced page in your sphinx chat app, and point the server setting to the domain name provided by your dynamic DNS se...
0
diff --git a/apps.json b/apps.json "storage": [ {"name":"+start","url":"start.json"}, {"name":"-start","url":"start.js"}, - {"name":"*start","url":"start-icon.js"}, - {"name":"*bangle","url":"start-bangle.js"}, - {"name":"*nceu","url":"start-nceu.js"}, - {"name":"*nfr","url":"start-nfr.js"}, - {"name":"*nodew","url":"s...
1
diff --git a/token-metadata/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/metadata.json b/token-metadata/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/metadata.json "symbol": "WBTC", "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/client/js/services/AppContainer.js b/src/client/js/services/AppContainer.js @@ -28,7 +28,6 @@ export default class AppContainer extends Container { this.state = { preferDarkModeByMediaQuery: false, - isOldIos: false, // stetes for contents recentlyUpdatedPages: [],
13
diff --git a/tests/test_Proxy.py b/tests/test_Proxy.py @@ -76,7 +76,7 @@ class TestExternStateFeeToken(HavvenTestCase): cls.fee_authority = fresh_account() cls.feetoken = ExternStateFeeTokenInterface(cls.proxied_feetoken, "ExternStateFeeToken") - cls.proxy = ProxyInterface(cls.proxy, "ExternStateFeeTokenProxy") + cls.p...
10
diff --git a/app/templates/client/ng1/dev/index.html b/app/templates/client/ng1/dev/index.html <div ng-view></div> </main> - <script> - (function(i, s, o, g, r, a, m) { - i["GoogleAnalyticsObject"] = r; - i[r] = i[r] || function() { - (i[r].q = i[r].q || []).push(arguments) - }, - i[r].l = 1 * new Date(); - a = s.creat...
2
diff --git a/components/evenement/event.js b/components/evenement/event.js @@ -16,7 +16,7 @@ const formatTag = tag => { ).join('')}` } -function Event({event, background, isPassed, id, activeEvent, setActiveEvent}) { +function Event({event, background, isPassed, id, activeEvent, handleOpen}) { const {titre, adresse, de...
9
diff --git a/src/middleware/packages/activitypub/services/dispatch.js b/src/middleware/packages/activitypub/services/dispatch.js @@ -37,7 +37,7 @@ const DispatchService = { } else { // If the QueueService mixin is available, use it if (this.createJob) { - this.createJob('remotePost', activity.id || activity['@id'],{ in...
1
diff --git a/lib/react/server_rendering/webpacker_manifest_container.rb b/lib/react/server_rendering/webpacker_manifest_container.rb @@ -77,7 +77,7 @@ module React def file_path path manifest.lookup_path(path) end - elsif MAJOR == 3 + elsif MAJOR >= 3 def file_path path ::Rails.root.join('public', manifest.lookup(path)...
1
diff --git a/src/libs/actions/IOU.js b/src/libs/actions/IOU.js @@ -180,7 +180,7 @@ function requestMoney(report, participants, amount, currency, recipientEmail, de currency, comment, iouReportID: iouReport.reportID, - reportID: chatReport.reportID, + chatReportID: chatReport.reportID, transactionID: optimisticTransacti...
10
diff --git a/src/js/controllers/recoveryFromSeed.js b/src/js/controllers/recoveryFromSeed.js @@ -40,7 +40,7 @@ angular.module('copayApp.controllers').controller('recoveryFromSeed', var currentAddressIndex = 0; var currentWalletIndex = 0; var arrAddresses = []; - var arrIndexesToWallets = []; + var arrWalletIndexes = []...
10
diff --git a/_includes/meshery.html b/_includes/meshery.html <div style="width:auto; height:auto; padding:0px; position:relative;"> <pre><code> $ kubectl create ns meshery - $ kubectl -n meshery apply -f deployment_yamls/k8s + $ kubectl -n meshery apply -f install/deployment_yamls/k8s </code></pre> <!-- copy to clipboa...
3
diff --git a/main/main.js b/main/main.js @@ -52,6 +52,7 @@ if (process.argv.some(item => item.includes('rename-db'))) { const browserPage = 'file://' + __dirname + '/index.html' var mainWindow = null +var mainWindowIsMinimized = false // workaround for https://github.com/minbrowser/min/issues/1074 var mainMenu = null v...
8
diff --git a/articles/hooks/extensibility-points/credentials-exchange.md b/articles/hooks/extensibility-points/credentials-exchange.md @@ -28,6 +28,10 @@ You can add the following as claims to the issued token: The extensibility point will ignore all other response object properties. +::: note +If you need to configure...
0
diff --git a/lib/modules/apostrophe-areas/lib/api.js b/lib/modules/apostrophe-areas/lib/api.js @@ -328,7 +328,7 @@ module.exports = function(self, options) { // Convert HTML to an area with one 'apostrophe-rich-text' widget, otherwise // an empty area. null and undefined are tolerated and converted to empty areas. - se...
10
diff --git a/docs/source/guides/getting-started/testing-your-app.md b/docs/source/guides/getting-started/testing-your-app.md @@ -160,16 +160,30 @@ it('sets auth cookie when logging in via cy.request()', function(){ If you need help getting started with this, open the dev tools, manually do a form submission, and see wh...
0
diff --git a/core/api-server/package-lock.json b/core/api-server/package-lock.json "node": ">=6" } }, + "node_modules/openapi-types": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/openapi-types/-/openapi-types-12.0.2.tgz", + "integrity": "sha512-GuTo7FyZjOIWVhIhQSWJVaws6A82sWIGyQogxxYBYKZ0NBdyP2CYS...
0
diff --git a/origin-dapp/src/components/modal.js b/origin-dapp/src/components/modal.js @@ -16,7 +16,7 @@ class Modal extends Component { return ( <ModalBS show={isOpen} - backdrop={backdrop || true} + backdrop={backdrop !== undefined ? backdrop : true} onHide={() => {}} className={className} dialogAs="div"
11
diff --git a/test/jasmine/tests/scatter_test.js b/test/jasmine/tests/scatter_test.js @@ -893,14 +893,10 @@ describe('Test Scatter.style', function() { afterEach(destroyGraphDiv); - function makeCheckFn(attr, getterFn) { - return function(update, expectation, msg) { - var msg2 = ' (' + msg + ')'; - var promise = update ...
0
diff --git a/tests/qunit/assets/js/util/index.js b/tests/qunit/assets/js/util/index.js @@ -111,44 +111,35 @@ valuesToTest.forEach( function( itemToTest ) { */ valuesToTest = [ { - head: '<script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga(\'create\', \'UA-XXXXX-Y\', \'auto\'); g...
3
diff --git a/scripts/start.js b/scripts/start.js +process.env.NODE_ENV = process.env.NODE_ENV || "development" + // Load environment variables from .env file. Suppress warnings using silent // if this file is missing. dotenv will never modify any environment variables // that have already been set.
4
diff --git a/source/background/library/buttercup.js b/source/background/library/buttercup.js @@ -33,18 +33,22 @@ export function createArchiveManager() { const queue = getQueue(); return queue.channel("archiveManager").enqueue(() => { const vm = new VaultManager({ + autoUpdate: true, + autoUpdateDelay: ms("2m"), cacheS...
7
diff --git a/docs/_includes/api/delete_index.html b/docs/_includes/api/delete_index.html @@ -89,7 +89,7 @@ one after the built-in `_all_docs` index): {% include code/start.html id="delete_idx2" type="callback" %} {% highlight js %} -db.findIndexes(function (err, indexesResult) { +db.getIndexes(function (err, indexesRes...
14
diff --git a/packages/app/src/components/InAppNotification/InAppNotificationPage.tsx b/packages/app/src/components/InAppNotification/InAppNotificationPage.tsx @@ -21,7 +21,11 @@ const InAppNotificationPageBody: FC<Props> = (props) => { const [activePage, setActivePage] = useState(1); const offset = (activePage - 1) * l...
4
diff --git a/html/utilities/validation/setValidTextInput.js b/html/utilities/validation/setValidTextInput.js -function setValidTextInput(inputContainer) { +const setValidTextInput = (inputContainer) => { const input = inputContainer.querySelector('input'); const errorContainer = inputContainer.querySelector('.sprk-b-Er...
3
diff --git a/refs/wicg.json b/refs/wicg.json "source": "https://wicg.github.io/admin/biblio.json", "repository": "https://github.com/wicg/layout-instability" }, - "MEDIA-CAPABILITIES": { - "href": "https://wicg.github.io/media-capabilities/", - "title": "Media Capabilities", - "status": "cg-draft", - "publisher": "WICG...
5
diff --git a/nerdamer.core.js b/nerdamer.core.js @@ -1433,6 +1433,7 @@ var nerdamer = (function(imports) { var retval; if(g1 === g2 & g1 === S && symbol.isLinear() && this.value === symbol.value) { //e.g. x^2+1, x=u : x is linear so it matches all x's + retval = retval || this.clone(); retval.value = for_symbol.value; ...
3
diff --git a/token-metadata/0xeBF4CA5319F406602EEFf68da16261f1216011B5/metadata.json b/token-metadata/0xeBF4CA5319F406602EEFf68da16261f1216011B5/metadata.json "symbol": "YO", "address": "0xeBF4CA5319F406602EEFf68da16261f1216011B5", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/tests/phpunit/integration/Core/Authentication/Clients/OAuth_ClientTest.php b/tests/phpunit/integration/Core/Authentication/Clients/OAuth_ClientTest.php @@ -577,46 +577,6 @@ class OAuth_ClientTest extends TestCase { $this->assertTrue( $client->using_proxy() ); } - public function test_get_proxy_setup_url() ...
2
diff --git a/src/types/swiper-options.d.ts b/src/types/swiper-options.d.ts @@ -601,10 +601,10 @@ export interface SwiperOptions { keyboard?: KeyboardOptions | boolean; lazy?: LazyOptions | boolean; mousewheel?: MousewheelOptions | boolean; - navigation?: NavigationOptions; - pagination?: PaginationOptions; + navigation...
0
diff --git a/components/Auth/SignIn.js b/components/Auth/SignIn.js @@ -133,8 +133,8 @@ class SignIn extends Component { return ( <div> - <div {...styles.form}> <form onSubmit={submitForm}> + <div {...styles.form}> <div {...styles.input}> <Field name='email' @@ -159,8 +159,8 @@ class SignIn extends Component { type='sub...
13
diff --git a/src/util.js b/src/util.js @@ -64,11 +64,10 @@ export default { display: column.hidden ? 'none' : null }; if (column.width) { - const width = parseInt(column.width, 10); - style.width = width; + style.width = column.width; /** add min-wdth to fix user assign column width not eq offsetWidth in large column t...
11
diff --git a/client/src/components/views/EngineControl/engine-1.js b/client/src/components/views/EngineControl/engine-1.js import React, { Fragment } from "react"; -import { Button, Col } from "reactstrap"; +import { Button, Col, Row } from "reactstrap"; +import { withApollo } from "react-apollo"; +import gql from "gra...
1
diff --git a/src/6_branch.js b/src/6_branch.js @@ -395,8 +395,12 @@ Branch.prototype['init'] = wrap( if (!err && typeof eventData === 'object') { self._branchViewEnabled = !!eventData['branch_view_enabled']; self._storage.set('branch_view_enabled', self._branchViewEnabled); - var branchViewData = null; - var testFlag =...
11
diff --git a/packages/app/src/stores/ui.tsx b/packages/app/src/stores/ui.tsx @@ -267,7 +267,7 @@ export const useSidebarCollapsed = (initialData?: boolean): SWRResponse<boolean, }; export const useCurrentSidebarContents = (initialData?: SidebarContentsType): SWRResponse<SidebarContentsType, Error> => { - return useStat...
12
diff --git a/packages/react-router-redux/modules/ConnectedRouter.js b/packages/react-router-redux/modules/ConnectedRouter.js @@ -25,9 +25,12 @@ class ConnectedRouter extends Component { componentWillMount() { const { store:propsStore, history } = this.props this.store = propsStore || this.context.store + this.handleLoc...
3
diff --git a/imports/ui/templates/components/identity/avatar/avatar.js b/imports/ui/templates/components/identity/avatar/avatar.js @@ -97,7 +97,7 @@ const getNation = (profile, flagOnly, nameOnly, codeOnly) => { } else if (profile.country !== undefined) { if (profile.country.name !== TAPi18n.__('unknown')) { if (flagOn...
11
diff --git a/src/utils/class.js b/src/utils/class.js import Utils from './utils'; class SwiperClass { - constructor(params = {}, parents = []) { + constructor(params = {}) { const self = this; self.params = params; // Events - self.eventsParents = parents; self.eventsListeners = {}; if (self.params && self.params.on) {...
2
diff --git a/src/components/Identity/createComponent.js b/src/components/Identity/createComponent.js @@ -14,21 +14,7 @@ export default (config, logger, optIn, eventManager) => { // TODO: Reimplement ID syncs // let alreadyQueriedForIdSyncs = false; - // TODO: Fetch from server if ECID is not available. - const getEcid ...
2
diff --git a/.storybook/storybook-data.js b/.storybook/storybook-data.js @@ -80,69 +80,6 @@ module.exports = [ }, }, }, - { - id: 'analytics-module-components-module-page-overview-widget--loaded', - kind: 'Analytics Module', - name: 'Overview Widget', - story: 'Loaded', - parameters: { - fileName: './stories/module-ana...
2
diff --git a/services/importer/lib/importer/downloader.rb b/services/importer/lib/importer/downloader.rb @@ -146,8 +146,6 @@ module CartoDB SecureRandom.urlsafe_base64 @filename = filename_with_extension(basename) - @etag = etag - @last_modified = last_modified end MAX_REDIRECTS = 5
2
diff --git a/CHANGES.md b/CHANGES.md @@ -4,7 +4,7 @@ Change Log ### 1.46 - 2018-06-01 ##### Breaking Changes :mega: -* `ParticleSystem` no longer uses `forces`. [#]() +* `ParticleSystem` no longer uses `forces`. [#6510](https://github.com/AnalyticalGraphicsInc/cesium/pull/6510) * `Particle` no longer uses `size`, `rate...
3
diff --git a/src/kiri/slicer.js b/src/kiri/slicer.js */ function slice(points, bounds, options, ondone, onupdate) { let useFlats = options.flats, - swap = options.swapX || options.swapY, debug = options.debug, xray = options.xray, ox = 0, oy = 0; - // handle rotating meshes for CAM finishing. - // slicer expects things...
2
diff --git a/src/lib/API.js b/src/lib/API.js @@ -318,7 +318,13 @@ Pusher.registerSocketEventCallback((eventName, data) => { isCurrentlyOffline = true; break; case 'state_change': - if (data.current === 'connecting' || data.current === 'unavailable') { + if (data.current === 'failed') { + // WebSockets are not natively ...
9
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js @@ -51,6 +51,8 @@ function convert_bg(value, profile) var determine_basal = function determine_basal(glucose_status, currenttemp, iob_data, profile, autosens_data, meal_data, tempBasalFunctions, microBolusAllowed, reservoir_dat...
12
diff --git a/articles/api-auth/tutorials/implicit-grant.md b/articles/api-auth/tutorials/implicit-grant.md @@ -12,8 +12,8 @@ https://${account.namespace}/authorize? audience={API_AUDIENCE}& scope={SCOPE}& response_type={RESPONSE_TYPE}& - client_id={AUTH0_CLIENT_ID}& - redirect_uri={CALLBACK_URL}& + client_id=${account....
14
diff --git a/packages/bitcore-node/docs/sockets-api.md b/packages/bitcore-node/docs/sockets-api.md @@ -26,7 +26,7 @@ socket.on('tx', sanitizedTx => { }); ``` -@params **sanitizedTx** - Transactions object without wallets property +@return **sanitizedTx** - Transactions object without wallets property ``` sanitizedTx = ...
14
diff --git a/packages/app/src/client/services/PageContainer.js b/packages/app/src/client/services/PageContainer.js @@ -684,7 +684,7 @@ export default class PageContainer extends Container { async resolveConflictAndReload(pageId, revisionId, markdown, optionsToSave) { await this.resolveConflict(pageId, revisionId, markd...
14
diff --git a/entry_types/scrolled/package/src/editor/models/SectionConfiguration.js b/entry_types/scrolled/package/src/editor/models/SectionConfiguration.js @@ -2,7 +2,7 @@ import {editor, Configuration} from 'pageflow/editor'; export const SectionConfiguration = Configuration.extend({ defaults: { - transition: 'scroll...
12