code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/test/unit/validate.test.js b/test/unit/validate.test.js @@ -39,16 +39,17 @@ describe('Recurly.validate', function () { }); it('should parse discover', function () { + assert(recurly.validate.cardType('6010999990139424') !== 'discover'); + assert(recurly.validate.cardType('6011040090139424') !== 'discover')...
3
diff --git a/token-metadata/0xD46bA6D942050d489DBd938a2C909A5d5039A161/metadata.json b/token-metadata/0xD46bA6D942050d489DBd938a2C909A5d5039A161/metadata.json "symbol": "AMPL", "address": "0xD46bA6D942050d489DBd938a2C909A5d5039A161", "decimals": 9, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/assets/js/components/setup/compatibility-checks.js b/assets/js/components/setup/compatibility-checks.js @@ -78,7 +78,7 @@ export default class CompatibilityChecks extends Component { this.state = { complete: isSiteKitConnected, error: null, - helperPlugin: {}, + developerPlugin: {}, }; } @@ -91,15 +91,15 @...
10
diff --git a/modules/clipboard.js b/modules/clipboard.js @@ -299,7 +299,8 @@ function matchStyles(node, delta) { if (style.fontStyle && computeStyle(node).fontStyle === 'italic') { formats.italic = true; } - if (style.fontWeight && (computeStyle(node).fontWeight === 'bold' || computeStyle(node).fontWeight === '700')) {...
9
diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js @@ -21,7 +21,7 @@ function currentCardIsInThisList(listId, swimlaneId) { currentCard.listId === listId && currentCard.swimlaneId === swimlaneId ); - else return currentCard && currentCard.listId === listId; + else return cu...
1
diff --git a/index.html b/index.html @@ -14874,7 +14874,6 @@ N is the population size. <br> <br> <!--BCD Addition --> - <div class="main" style="padding-left: 3.125rem;"> <div class="col-6"> <div class="form-group"> <h2>BCD Code Addition </h2>
1
diff --git a/Gruntfile.js b/Gruntfile.js @@ -8,6 +8,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-connect'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-less'); + grunt.loadNpmTasks('grunt-contrib-sass'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNp...
9
diff --git a/client/package.json b/client/package.json }, "homepage": "https://github.com/opentable/oc/tree/master/oc-client", "dependencies": { - "handlebars": "4.0.5", "minimal-request": "2.2.0", "nice-cache": "0.0.5", + "oc-template-handlebars": "1.0.0", "stringformat": "0.0.5" }, "engines": {
3
diff --git a/docs/5.api/rpc/contracts.md b/docs/5.api/rpc/contracts.md @@ -850,14 +850,14 @@ http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=query \ "id": "dontcare" } ``` - - -**Note**: Currently, the response includes a `proof` field directly in the `result`, and a `proof` fields on each element...
13
diff --git a/app/views/carto/admin/mobile_apps/index.html.erb b/app/views/carto/admin/mobile_apps/index.html.erb <div class="CDB-Text FormAccount-Content"> <%= render :partial => 'admin/shared/api_keys_subheader' %> - <div class="Filters-separator"></div> <%= render :partial => 'carto/admin/mobile_apps/mobile_plan_info...
2
diff --git a/detox/scripts/build_universal_framework.sh b/detox/scripts/build_universal_framework.sh @@ -8,7 +8,7 @@ if [ "${XCODEVERSION}" == "`echo -e "${XCODEVERSION}\n12.0" | sort --version-sor FRAMEWORK_SCRIPT="build_universal_framework_modern.sh" else echo "Xcode 11 and below; using legacy script for building" - ...
4
diff --git a/src/pages/cart.js b/src/pages/cart.js @@ -15,6 +15,9 @@ import Link from "components/Link"; import { Router } from "routes"; const styles = (theme) => ({ + cartEmptyMessageContainer: { + margin: "80px 0" + }, checkoutButtonsContainer: { backgroundColor: theme.palette.reaction.black02, padding: theme.spacin...
3
diff --git a/src/pages/MetricDocs/Documentation/Documentation.js b/src/pages/MetricDocs/Documentation/Documentation.js @@ -45,15 +45,20 @@ const AreaTypes = { }; -const Markdown: ComponentType<*> = ({ payload, className="" }) => { +const Markdown: ComponentType<*> = ({ payload, className="", toc=false }) => { - const d...
7
diff --git a/token-metadata/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/metadata.json b/token-metadata/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/metadata.json "symbol": "SGA", "address": "0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/js/editor/textmarkers.js b/src/js/editor/textmarkers.js @@ -65,6 +65,7 @@ export function getTextMarkerConstructors(nodes) { if (mark.matchAgainst === 'key') { const key = getKeyNameForNode(node); if (key) { + const address = getKeyAddressForNode(node); const check = (mark.matchPattern === key); // If ...
1
diff --git a/src/components/networked-video-source.js b/src/components/networked-video-source.js @@ -42,13 +42,19 @@ AFRAME.registerComponent('networked-video-source', { if (newStream) { this.video.srcObject = newStream; - var playResult = this.video.play(); + const playResult = this.video.play(); if (playResult instan...
7
diff --git a/packages/react/src/components/ReadOnlyValue/ReadOnlyValue.mdx b/packages/react/src/components/ReadOnlyValue/ReadOnlyValue.mdx @@ -24,7 +24,7 @@ import { ReadOnlyValue } from 'carbon-addons-iot-react'; | Name | Type | Default | Description | | :-------- | :---------------------------------------------------...
1
diff --git a/components/widgets/VegaChartTooltip.js b/components/widgets/VegaChartTooltip.js @@ -51,12 +51,12 @@ class VegaChartTooltip extends React.Component { <div className="c-chart-tooltip"> { this.props.item.x.label && ( <div className="labels"> - <span>{this.props.item.y && this.props.item.y.label}</span> + { th...
7
diff --git a/includes/Core/Nonces/Nonces.php b/includes/Core/Nonces/Nonces.php @@ -127,9 +127,7 @@ final class Nonces { 'callback' => function() { return new WP_REST_Response( $this->get_nonces() ); }, - 'permission_callback' => function () { - return current_user_can( 'edit_posts' ); - }, + 'permission_callback' => '_...
2
diff --git a/src/components/RoomHeaderAvatars.js b/src/components/RoomHeaderAvatars.js @@ -37,7 +37,7 @@ const RoomHeaderAvatars = (props) => { avatarImageURLs={props.avatarImageURLs} avatarTooltips={[]} defaultSubscriptIcon={() => Expensicons.Workspace} - size={props.showSubscript ? 'large' : 'default'} + size="large"...
12
diff --git a/js/webcomponents/bisweb_filetreepipeline.js b/js/webcomponents/bisweb_filetreepipeline.js @@ -318,7 +318,7 @@ class FileTreePipeline extends HTMLElement { //format the saved modules to use the pipeline creation tool. //TODO: Format this to use biswebnode maybe? - let command = ['', 'home', 'zach', 'javascr...
1
diff --git a/generators/server/templates/src/main/java/package/web/rest/UserResource.java.ejs b/generators/server/templates/src/main/java/package/web/rest/UserResource.java.ejs @@ -274,6 +274,10 @@ public class UserResource { */ @GetMapping("/users") @Timed +<<<<<<< HEAD +======= + @PreAuthorize("hasRole(\"" + Authorit...
14
diff --git a/src/languages/hy.js b/src/languages/hy.js @@ -7,7 +7,7 @@ Category: lisp function(hljs) { var keywords = { - built_in: + 'builtin-name': // keywords '!= % %= & &= * ** **= *= *map ' + '+ += , --build-class-- --import-- -= . / // //= ' +
10
diff --git a/ui/scss/component/_button.scss b/ui/scss/component/_button.scss &:focus:not(:focus-visible) { // Need to repeat these styles because of video.js weirdness - // TODO: verify that this "weirdness" actually exists + // see: https://github.com/lbryio/lbry-desktop/pull/5549#discussion_r580406932 background-repe...
14
diff --git a/packages/build/src/core/main.js b/packages/build/src/core/main.js @@ -19,13 +19,13 @@ const { doDryRun } = require('./dry') /** * Netlify Build - * @param {object} options - build configuration options - * @param {string} [options.config] - Netlify config file path - * @param {string} [options.token] - Net...
10
diff --git a/package.json b/package.json ], "dependencies": { "filter-react-dom-props": "0.0.2", - "postinstall-build": "DominikGuzei/postinstall-build#master", "react-modal": "3.1.12" }, "peerDependencies": { "js": "babel source -d lib -s", "build": "cross-env npm run clean && npm run sass && npm run js", "clean": "ri...
14
diff --git a/articles/tutorials/using-auth0-to-secure-an-api.md b/articles/tutorials/using-auth0-to-secure-an-api.md @@ -8,35 +8,10 @@ To secure CLI programs, Auth0 requires [Proof Key for Code Exchange (PKCE) by OA ## Implicit Flow vs. PKCE by OAuth Public Clients -Traditionally, public clients, such as mobile and sin...
0
diff --git a/test/testBGZipLineReader.js b/test/testBGZipLineReader.js @@ -4,27 +4,6 @@ import {assert} from 'chai'; suite("testBGZipLineReader", function () { - test("long lines", async function () { - this.timeout(10000); - const config = { - url: 'https://www.dropbox.com/s/04ozbw88ea4wkbz/gcnv_large.bed.gz?dl=0' - }...
1
diff --git a/components/Form/InputField/InputField.js b/components/Form/InputField/InputField.js @@ -26,8 +26,8 @@ export default class InputField extends Component { label: PropTypes.node, description: PropTypes.node, children: PropTypes.element.isRequired, - error: PropTypes.string, - valueReplay: PropTypes.string, +...
11
diff --git a/src/primitives.js b/src/primitives.js @@ -248,7 +248,7 @@ function transformNormal(mi, v, dst) { /** * Reorients directions by the given matrix.. * @param {number[]|TypedArray} array The array. Assumes value floats per element. - * @param {Matrix} matrix A matrix to multiply by. + * @param {module:twgl/m4....
14
diff --git a/test/jasmine/tests/select_test.js b/test/jasmine/tests/select_test.js @@ -867,6 +867,44 @@ describe('Test select box and lasso per trace:', function() { .then(done); }, LONG_TIMEOUT_INTERVAL); + it('should work on scatterpolar traces', function(done) { + var assertPoints = makeAssertPoints(['r', 'theta']);...
0
diff --git a/lib/shared/addon/azure-ad/service.js b/lib/shared/addon/azure-ad/service.js @@ -5,7 +5,7 @@ import { get, set } from '@ember/object'; const additionalRedirectParams = { response_mode: "query", response_type: "code", - prompt: "consent", + // prompt: "consent", }; export default Service.extend({
2
diff --git a/presave.js b/presave.js @@ -12,11 +12,17 @@ var H5PEditor = H5PEditor || {}; H5PPresave['H5P.InteractiveVideo'] = function (content, finished) { var presave = H5PEditor.Presave; - if (isContentInValid(content)) { + if (isContentInValid()) { throw new presave.exceptions.InvalidContentSemanticsException('Inv...
0
diff --git a/embark-ui/src/containers/HomeContainer.js b/embark-ui/src/containers/HomeContainer.js @@ -6,9 +6,8 @@ import {Page} from "tabler-react"; import {commands as commandsAction, listenToProcessLogs, processLogs as processLogsAction} from "../actions"; import DataWrapper from "../components/DataWrapper"; import ...
2
diff --git a/ui/app/add-token.js b/ui/app/add-token.js @@ -303,7 +303,6 @@ AddTokenScreen.prototype.renderConfirmation = function () { h('div.add-token', [ h('div.add-token__wrapper', [ h('div.add-token__title-container.add-token__confirmation-title', [ - h('div.add-token__title', t('addToken')), h('div.add-token__desc...
4
diff --git a/src/ui.bar.js b/src/ui.bar.js @@ -16,25 +16,16 @@ var _ = Mavo.UI.Bar = $.Class({ this.noResize = true; } - this.order = this.mavo.element.getAttribute("mv-bar") || this.element.getAttribute("mv-bar"); + this.controls = _.getControls(this.mavo.element.getAttribute("mv-bar") || this.element.getAttribute("mv...
11
diff --git a/src/component/child/index.js b/src/component/child/index.js @@ -5,7 +5,7 @@ import * as postRobot from 'post-robot/src'; import { SyncPromise as Promise } from 'sync-browser-mocks/src/promise'; import { BaseComponent } from '../base'; import { getParentComponentWindow, getComponentMeta, getParentDomain, ge...
11
diff --git a/spark/components/promo/vanilla/promo.stories.js b/spark/components/promo/vanilla/promo.stories.js @@ -76,7 +76,7 @@ export const withImage = () => (` <a href="#" class="sprk-o-Stack__item sprk-o-Stack__item--half@s "> <img class="sprk-c-Promo__image" - src="https://sparkdesignsystem.com/assets/toolkit/imag...
3
diff --git a/articles/appliance/webtask/dedicated-domains.md b/articles/appliance/webtask/dedicated-domains.md @@ -9,6 +9,10 @@ Some extensions, such as the [Authorization Extension](/extensions/authorization Beginning with PSaaS Appliance version `13451`, you may now configure Webtask on a dedicated domain. This mirro...
0
diff --git a/views/tabarea.es b/views/tabarea.es @@ -119,6 +119,7 @@ export class ControlledTabArea extends PureComponent { openedWindow: {}, } windowRefs = {} + resizeContainer = React.createRef() dispatchTabChangeEvent = (tabInfo, autoSwitch=false) => dispatch({ type: '@@TabSwitch', @@ -424,7 +425,7 @@ export class C...
4
diff --git a/packages/gallery/src/components/helpers/virtualization.ts b/packages/gallery/src/components/helpers/virtualization.ts @@ -47,33 +47,41 @@ export function getItemsInViewportOrMarginByActiveGroup({ ? backwardItemScrollMargin : backwardItemMargin; - let accoumilatedRightMargin = 0; - let accoumilatedLeftMargi...
3
diff --git a/README.md b/README.md @@ -8,6 +8,8 @@ targeted at developers and map designers. - :link: Design your maps online at **http://maputnik.com/editor/** (all in local storage) - :link: Use the [Maputnik CLI](https://github.com/maputnik/editor/wiki/Maputnik-CLI) for local style development +Mapbox has built one ...
5
diff --git a/reports/reportSlack.js b/reports/reportSlack.js @@ -56,11 +56,11 @@ export default class ReportSlack extends Report { method: "POST", resposnseType: "json", data: { - text: content.message, attachments: [ { color: this.params.colors[message], - title: message + title: message, + text: content.message } ] }...
7
diff --git a/packages/webpack-plugin/lib/json-compiler/index.js b/packages/webpack-plugin/lib/json-compiler/index.js @@ -241,7 +241,7 @@ module.exports = function (raw) { async.waterfall([ (callback) => { if (srcRoot) { - callback(null, path.join(context, srcRoot, page) + '.mpx') + callback(null, path.join(context, src...
1
diff --git a/.travis.yml b/.travis.yml @@ -14,15 +14,15 @@ script: - npm test # Make sure it still builds successfully - the build isn't actually used yet: - npm run build -# before_deploy: -# - node ./travis/bumpversion.js -# deploy: -# provider: npm -# # Do not throw away the updated package.json we generated in `bef...
13
diff --git a/sources/us/wa/clark.json b/sources/us/wa/clark.json "state": "wa", "county": "Clark" }, - "data": "https://data.openaddresses.io/cache/uploads/nvkelso/2806bc/clark_county_vancouver_wa_tax_parcels.zip", - "protocol": "http", - "compression": "zip", + "data": "https://services2.arcgis.com/ylxwjFBdCPBzP16d/ar...
4
diff --git a/tests/__snapshots__/story-based-tests.snapshot-test.js.snap b/tests/__snapshots__/story-based-tests.snapshot-test.js.snap @@ -24599,7 +24599,7 @@ exports[`DOM snapshots SLDSInput Docs site Error 1`] = ` className="slds-button__icon" > <use - xlinkHref="/assets/icons/utility-sprite/svg/symbols.svg#warning" ...
3
diff --git a/constants.js b/constants.js @@ -97,5 +97,4 @@ export const defaultDioramaSize = 512; export const defaultAvatarUrl = './avatars/scillia_drophunter_v15_vian.vrm'; // export const defaultAvatarUrl = './avatars/scillia_drophunter_v25_gloria_vian.vrm'; -// export const defaultAvatarUrl = './avatars/scilly_drop...
2
diff --git a/token-metadata/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/metadata.json b/token-metadata/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/metadata.json "symbol": "SWFTC", "address": "0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/grails-app/controllers/streama/FileController.groovy b/grails-app/controllers/streama/FileController.groovy @@ -226,7 +226,12 @@ class FileController { } def localPath = Paths.get(uploadService.localPath) - def dirPath = localPath.resolve( uploadService.localPath + path).toAbsolutePath() + def dirPath + if...
1
diff --git a/assets/js/app/dashboard/02_dashboard-controller.js b/assets/js/app/dashboard/02_dashboard-controller.js $scope.loading = false hasInitiallyLoaded = true if($scope.status && $scope.info) { + $scope.error = false drawCharts(); errorCount = 0; nextLoad();
12
diff --git a/tests/e2e/specs/modules/tagmanager/setup.test.js b/tests/e2e/specs/modules/tagmanager/setup.test.js @@ -37,6 +37,7 @@ import { setupSiteKit, useRequestInterception, } from '../../../utils'; +import liveContainerVersionFixture from '../../../../../assets/js/modules/tagmanager/datastore/__fixtures__/live-con...
14
diff --git a/js/node/pipelinemodule.js b/js/node/pipelinemodule.js @@ -194,7 +194,6 @@ let makePipeline = function(pipelineOptions,odir='',debug=false) { //a variable is generated by a job if the symbolic reference to that variable first appears in that job, e.g. if you have a variable 'out1', if it is first referenced...
1
diff --git a/sparta.go b/sparta.go @@ -8,6 +8,8 @@ import ( "fmt" "math/rand" "net/http" + "os" + "path/filepath" "reflect" "regexp" "runtime" @@ -1062,6 +1064,27 @@ func validateSpartaPreconditions(lambdaAWSInfos []*LambdaAWSInfo, if len(errorText) != 0 { return errors.New(strings.Join(errorText[:], "\n")) } + // Chec...
0
diff --git a/Apps/Sandcastle/gallery/development/Multiple Shadows.html b/Apps/Sandcastle/gallery/development/Multiple Shadows.html shadowMap.enabled = true; var model = scene.primitives.add(Cesium.Model.fromGltf({ - url : '../../SampleData/models/ShadowTester/Shadow_Tester_Point.gltf', + url : '../../SampleData/models/...
3
diff --git a/app/models/carto/dbdirect_ip.rb b/app/models/carto/dbdirect_ip.rb @@ -12,7 +12,6 @@ module Carto MAX_IP_MASK_HOST_BITS = 8 def validate_ips - support_legacy_ips_format # Check type unless ips.nil? || ips.kind_of?(Array) || ips.any? { |ip| !is.kind_of?(String) } errors.add(:ips, "IPs must be either be nil o...
2
diff --git a/src/web/HTMLIngredient.mjs b/src/web/HTMLIngredient.mjs @@ -293,6 +293,16 @@ class HTMLIngredient { this.manager.addDynamicListener(".arg-selector", "change", this.argSelectorChange, this); break; + case "label": + html += `<div class="form-group"> + <label>${this.name}</label> + <input type="hidden" + cla...
0
diff --git a/features/e2e/resource_management.feature b/features/e2e/resource_management.feature @@ -6,8 +6,8 @@ Feature: Resource Management And I log in as test_user Then I am redirected to domain path "identity/home" + @admin Scenario: The Resource Management page is reachable When I visit project path "resource-man...
5
diff --git a/src/plots/cartesian/dragbox.js b/src/plots/cartesian/dragbox.js @@ -989,7 +989,7 @@ function zoomAxRanges(axList, r0Fraction, r1Fraction, updates, linkedAxes) { } // zoom linked axes about their centers - if(linkedAxes.length) { + if(linkedAxes && linkedAxes.length) { var linkedR0Fraction = (r0Fraction + (...
0
diff --git a/token-metadata/0xB020eD54651831878E5C967e0953A900786178f9/metadata.json b/token-metadata/0xB020eD54651831878E5C967e0953A900786178f9/metadata.json "symbol": "BAZT", "address": "0xB020eD54651831878E5C967e0953A900786178f9", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/test/unit/specs/store/wallet.spec.js b/test/unit/specs/store/wallet.spec.js @@ -142,7 +142,7 @@ describe(`Module: Wallet`, () => { it(`should load denoms`, async () => { const commit = jest.fn() - await actions.loadDenoms({ commit, rootState: mockRootState }) + await actions.loadDenoms({ state, commit, roo...
1
diff --git a/packages/app/test/integration/service/v5.non-public-page.test.ts b/packages/app/test/integration/service/v5.non-public-page.test.ts @@ -321,9 +321,39 @@ describe('PageService page operations with non-public pages', () => { // }); }); describe('Delete', () => { - // test('', async() => { - // // write test ...
6
diff --git a/src/widgets/histogram/chart.js b/src/widgets/histogram/chart.js @@ -946,16 +946,20 @@ module.exports = cdb.core.View.extend({ var loExtent = extent[0]; var hiExtent = extent[1]; - var leftX = this.xScale(loExtent) - this.options.handleWidth / 2; - var rightX = this.xScale(hiExtent) - this.options.handleWid...
11
diff --git a/src/components/calendar/Calendar.js b/src/components/calendar/Calendar.js @@ -2585,9 +2585,9 @@ export class Calendar extends Component { } renderDayNames(weekDays) { - const dayNames = weekDays.map(weekDay => + const dayNames = weekDays.map( (weekDay, index) => ( - <th key={weekDay} scope="col"> + <th key...
7
diff --git a/src/broker/saslAuthenticator/oauthBearer.js b/src/broker/saslAuthenticator/oauthBearer.js @@ -10,15 +10,15 @@ module.exports = class OAuthBearerAuthenticator { async authenticate() { const { sasl } = this.connection - if (sasl.oauthBearerResolver == null) { + if (sasl.oauthBearerProvider == null) { throw n...
10
diff --git a/bin/oref0-setup.sh b/bin/oref0-setup.sh @@ -992,6 +992,7 @@ if prompt_yn "" N; then cd $HOME/src/Logger sudo apt-get install -y bluez-tools sudo npm run global-install + cgm-transmitter $DEXCOM_CGM_TX_ID touch /tmp/reboot-required fi
12
diff --git a/api/src/utils/upsert.js b/api/src/utils/upsert.js @@ -27,7 +27,9 @@ export async function upsertManyPosts(publicationID, newPosts, publicationType) // step 1: get the existing objects in mongodb let fingerprints = newPosts.map(p=>p.fingerprint) - let existingPosts = await schema.find({fingerprint: {$in: fi...
4
diff --git a/src/geometry/Path.js b/src/geometry/Path.js @@ -36,7 +36,15 @@ class Path extends Geometry { * @param {Object} [options=null] animation options * @param {Number} [options.duration=1000] duration * @param {String} [options.easing=out] animation easing - * @param {Function} [cb=null] callback function in ani...
3
diff --git a/src/components/link.js b/src/components/link.js @@ -7,8 +7,12 @@ class Link extends IdyllComponent { } render() { + let props = this.props; + if (props.url) { + props.href = props.url; + } return ( - <a {...this.props}> + <a {...props}> {this.props.text} </a> );
3
diff --git a/package.json b/package.json "abaculus": "cartodb/abaculus#2.0.3-cdb1", "canvas": "cartodb/node-canvas#1.6.2-cdb2", "carto": "cartodb/carto#0.15.1-cdb3", - "cartodb-psql": "0.10.1", + "cartodb-psql": "^0.10.1", "debug": "~2.2.0", "dot": "~1.0.2", "grainstore": "~1.6.0",
4
diff --git a/bin/components/operation.js b/bin/components/operation.js @@ -70,7 +70,7 @@ Operation.buildParameters = function buildParameters(enforcer, exception, defini definition.parameters.forEach((definition, index) => { const child = paramException.at(index); const parameter = new Parameter(enforcer, child, defini...
2
diff --git a/src/userscript.ts b/src/userscript.ts @@ -100886,11 +100886,13 @@ var $$IMU_EXPORT$$; // thanks to DevWannabe-dot on github: https://github.com/qsniyg/maxurl/issues/906 // https://static.metacritic.com/images/products/music/9/679a9b797240b0b1772b8d8b5aeea862-98.jpg // https://static.metacritic.com/images/p...
7
diff --git a/deployment/kubernetes/charts/origin/templates/notifications.ingress.yaml b/deployment/kubernetes/charts/origin/templates/notifications.ingress.yaml @@ -18,7 +18,7 @@ metadata: nginx.ingress.kubernetes.io/force-ssl-redirect: "true" nginx.ingress.kubernetes.io/enable-cors: "true" nginx.ingress.kubernetes.io/...
11
diff --git a/src/plugins/dialog/video.js b/src/plugins/dialog/video.js @@ -540,7 +540,7 @@ export default { url = 'https://player.vimeo.com/video/' + url.slice(url.lastIndexOf('/') + 1); } - this.plugins.video.create_video.call(this, this.plugins.video[(!/youtu\.?be/.test(url) && !/vimeo\.com/.test(url) ? "createVideoT...
7
diff --git a/common/lib/client/paginatedresource.ts b/common/lib/client/paginatedresource.ts @@ -102,7 +102,7 @@ class PaginatedResource { items = this.bodyHandler(body, headers, unpacked); } catch(e) { /* If we got an error, the failure to parse the body is almost certainly - * due to that, so cb with that in preferen...
7
diff --git a/ui/component/viewers/videoViewer/view.jsx b/ui/component/viewers/videoViewer/view.jsx @@ -21,7 +21,6 @@ const SEEK_BACKWARD_KEYCODE = ARROW_LEFT_KEYCODE; const SEEK_STEP = 10; // time to seek in seconds const VIDEO_JS_OPTIONS: { poster?: string } = { - autoplay: true, controls: true, preload: 'auto', playb...
7
diff --git a/magda-web-client/src/Components/Dataset/Add/DatasetAddCommon.ts b/magda-web-client/src/Components/Dataset/Add/DatasetAddCommon.ts @@ -732,7 +732,7 @@ export function createBlankState(user: User): State { }, datasetPublishing: { state: "draft", - level: "organization", + level: "creatorOrgUnit", contactPoin...
12
diff --git a/test/renderer/AbstractIssue.test.js b/test/renderer/AbstractIssue.test.js @@ -4,18 +4,22 @@ const { constants } = require('./../../lib/slack/renderer'); const issuesOpened = require('./../fixtures/webhooks/issues.opened.json'); describe('AbstractIssue rendering', () => { - test('works for getHexColorbyStat...
7
diff --git a/etc/marklogic-template/tmpl/container.tmpl b/etc/marklogic-template/tmpl/container.tmpl <?js if (!doc.longname || doc.kind !== 'module') { ?> <h2><?js if (doc.ancestors && doc.ancestors.length) { ?> <span class="ancestors"><?js= doc.ancestors.join('') ?></span> - <?js } ?> - <?js= doc.name ?> - <?js if (do...
2
diff --git a/index.mjs b/index.mjs @@ -5,7 +5,6 @@ import path from 'path'; import fs from 'fs'; import express from 'express'; import vite from 'vite'; -import fetch from 'node-fetch'; import wsrtc from 'wsrtc/wsrtc-server.mjs'; Error.stackTraceLimit = 300;
2
diff --git a/edit.js b/edit.js @@ -227,6 +227,11 @@ const HEIGHTFIELD_SHADER = { mod((vPosition.x) / 2.0, 1.0), mod((vPosition.z) / 2.0, 1.0) ); + uv.x *= 1.0/8.0; + uv.y *= 512.0/4096.0; + if (vPosition.y < 290.0) { + uv.x += 3.0/8.0; + } vec2 uv2 = vec2(0.1 + vWorldPosition.y/30.0, 0.5); vec3 c = texture2D(heightColo...
0
diff --git a/test/jasmine/tests/gl3d_plot_interact_test.js b/test/jasmine/tests/gl3d_plot_interact_test.js @@ -403,7 +403,11 @@ describe('Test gl3d plots', function() { layout: { scene: { camera: { - up: { x:-0.5777, y:-0.5777, z:0.5777 } + up: { + x: -0.5777, + y: -0.5777, + z: 0.5777 + } } } } @@ -426,7 +430,11 @@ de...
0
diff --git a/src/utils/get-error-pcc.js b/src/utils/get-error-pcc.js @@ -3,7 +3,7 @@ export default (string) => { return null; } - const [, pcc = null] = string.match(/NO AGREEMENT EXISTS FOR AGENCY - ([A-Z0-9]+)/); + const [, pcc = null] = string.match(/NO AGREEMENT EXISTS FOR AGENCY - ([A-Z0-9]+)/) || []; return pcc;...
0
diff --git a/lib/recurly/paypal/strategy/braintree.js b/lib/recurly/paypal/strategy/braintree.js @@ -4,7 +4,7 @@ import {PayPalStrategy} from './index'; const debug = require('debug')('recurly:paypal:strategy:braintree'); -export const BRAINTREE_CLIENT_VERSION = '3.11.0'; +export const BRAINTREE_CLIENT_VERSION = '3.50....
3
diff --git a/GH-Release.sh b/GH-Release.sh #!/bin/bash set -e -#set -x GIT_BRANCH=${JOB_NAME#*/*/} GIT_COMMIT=$(git rev-parse HEAD) -if ! [ "${GIT_BRANCH}" = "ride4" ]; then +if ! [ "${GIT_BRANCH}" = "master" ]; then echo "skipping creating release for ${GIT_BRANCH}" exit 0 else @@ -66,16 +65,14 @@ else echo jq not fou...
13
diff --git a/gears/carto_gears_api/Gemfile.lock b/gears/carto_gears_api/Gemfile.lock PATH remote: . specs: - carto_gears_api (0.0.5) - pg (= 0.15) - rails (= 4.2.8) + carto_gears_api (0.0.6) + pg (= 0.15.0) + rails (= 4.2.10) values (= 1.8.0) GEM remote: https://rubygems.org/ specs: - actionmailer (4.2.8) - actionpack ...
3
diff --git a/etc/eslint/rules/style.js b/etc/eslint/rules/style.js @@ -1310,7 +1310,9 @@ rules[ 'object-curly-newline' ] = [ 'error', { 'minProperties': 1, 'consistent': true }, - 'ObjectPattern': 'never' + 'ObjectPattern': 'never', + 'ImportDeclaration': 'never', + 'ExportDeclaration': 'never' }]; /**
12
diff --git a/Roll20-Audio-Master/script.json b/Roll20-Audio-Master/script.json { "name": "Roll20 Audio Master", "script": "Roll20AM.js", - "version": "2.08", - "previousversions": ["1.04","1.03","1.02","1.01","1.0","1,05"], + "version": "2.10", + "previousversions": ["1.04","1.03","1.02","1.01","1.0","1,05","2.08",], "...
3
diff --git a/packages/app/src/stores/editor.tsx b/packages/app/src/stores/editor.tsx @@ -102,9 +102,9 @@ export const usePageTagsForEditors = (pageId: Nullable<string>): SWRResponse<str return { ...swrResult, - sync: (newTags?: string[]): void => { + sync: (newTagsOnEdit?: string[]): void => { const { mutate } = swrRes...
10
diff --git a/packages/utils/src/backend/index.js b/packages/utils/src/backend/index.js @@ -25,7 +25,7 @@ function useBackend(baseURL, timeout = 10000) { backend.login = (username, password) => api.post('/login', { username, password }) // Login backend.confirmationLogin = id => api.post('/confirm/login', { id }) // Con...
10
diff --git a/src/DatabaseSchema.php b/src/DatabaseSchema.php @@ -44,14 +44,14 @@ class DatabaseSchema } /** - * Maps the columns from raw db values into an usable array. + * Map the tables from raw db values into an usable array. * - * @param Doctrine\DBAL\Schema\Schema $rawColumns + * @param Doctrine\DBAL\Schema\Schem...
10
diff --git a/src/styles/schema-styles.js b/src/styles/schema-styles.js @@ -10,6 +10,7 @@ export default css` width: 100%; box-sizing: content-box; border-bottom: 1px dotted transparent; + transition: max-height 0.3s ease-out; } .td { display: block; @@ -24,6 +25,26 @@ export default css` .collapsed-all-descr .key { ove...
7
diff --git a/edit.js b/edit.js @@ -1183,6 +1183,136 @@ class CollisionRaycaster { } const collisionRaycaster = new CollisionRaycaster(); +const physicsMaterial = new THREE.ShaderMaterial({ + uniforms: { + uNear: { + type: 'f', + value: 0, + }, + uFar: { + type: 'f', + value: 1, + }, + }, + vertexShader: `\ + // attribu...
0
diff --git a/Source/dom/style/Style.js b/Source/dom/style/Style.js @@ -247,6 +247,9 @@ Style.define('sharedStyleId', { if (parentLayer && parentLayer.setSharedStyleID) { parentLayer.setSharedStyleID(null) } + if (this._sharedStyle) { + this._sharedStyle = undefined + } return }
9
diff --git a/app/templates/components/forms/orders/order-form.hbs b/app/templates/components/forms/orders/order-form.hbs 'By clicking "Pay Now", I acknowledge that I have read and that I agree with all the terms of services and privacy policy of Open Event.'}} </p> <div class="center aligned"> - <button type="submit" c...
10
diff --git a/src/audio/audio.js b/src/audio/audio.js if (sound && typeof sound !== "undefined") { sound.stop(instance_id); // remove the defined onend callback (if any defined) - sound.off("end", instance_id); + sound.off("end", undefined, instance_id); } };
1
diff --git a/packages/spark-core/components/_dropdown.scss b/packages/spark-core/components/_dropdown.scss } .sprk-c-Dropdown__header { - padding: $sprk-dropdown-padding $sprk-dropdown-padding - ($sprk-dropdown-padding / 2) $sprk-dropdown-padding; + padding: ($sprk-dropdown-padding / 2) $sprk-dropdown-padding; // When ...
3
diff --git a/lib/sketchLink.js b/lib/sketchLink.js /* - Link from sketch a, port i to sketch b, port j, with curvature s. + Link from sketch "fromSketch", port "outputPortIndex" (at the moment all sketches only + have one output port, so outputPortIndex should always be 0) to sketch "toSketch", + port "inputPortIndex",...
10
diff --git a/src/libs/OptionsListUtils.js b/src/libs/OptionsListUtils.js @@ -199,15 +199,15 @@ function hasReportDraftComment(report, reportsWithDraft = {}) { * @returns {String} */ function getBrickRoadIndicatorStatusForReport(report, reportActions) { - const errors = lodashGet(report, 'errors', {}); - const errorFiel...
10
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -779,10 +779,9 @@ When writing docs you can use the following variables instead of hard-coding the | Variable | Description | Default Value | | :---------------------------- | :----------------------------------------- | :-------------------------------------- | | `mana...
2